Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/questdb/questdb
/ get
Method
get
core/src/main/java/io/questdb/std/ThreadLocal.java:42–50 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
40
}
41
42
@Override
43
public
T get() {
44
T val = super.get();
45
if
(val == null) {
46
val = factory.newInstance();
47
set(val);
48
}
49
return
val;
50
}
51
}
Callers
nothing calls this directly
Calls
3
get
Method · 0.65
newInstance
Method · 0.65
set
Method · 0.65
Tested by
no test coverage detected