Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/questdb/questdb
/ expand
Method
expand
core/src/main/java/io/questdb/std/ObjectPool.java:122–126 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
120
}
121
122
private
void
expand() {
123
fill();
124
size <<= 1;
125
LOG.debug().$(
"pool resize [class="
).$(factory.getClass().getName()).$(
", size="
).$(size).$(
']'
).$();
126
}
127
128
private
void
fill() {
129
for
(
int
i = 0; i < size; i++) {
Callers
1
next
Method · 0.95
Calls
5
fill
Method · 0.95
$
Method · 0.65
debug
Method · 0.65
getName
Method · 0.65
getClass
Method · 0.45
Tested by
no test coverage detected