Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/google/guava
/ invalidateAll
Method
invalidateAll
guava/src/com/google/common/cache/LocalCache.java:4313–4318 ·
view source on GitHub ↗
(Iterable<?> keys)
Source
from the content-addressed store, hash-verified
4311
}
4312
4313
void
invalidateAll(Iterable<?> keys) {
4314
// TODO(fry): batch by segment
4315
for
(Object key : keys) {
4316
remove(key);
4317
}
4318
}
4319
4320
@LazyInit @RetainedWith @Nullable Set<K> keySet;
4321
Callers
nothing calls this directly
Calls
1
remove
Method · 0.95
Tested by
no test coverage detected