- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for IsEmpty (0.05 seconds)
-
guava-tests/test/com/google/common/cache/LocalCacheTest.java
map.put(keyOne, valueOne); assertThat(segment.recencyQueue.isEmpty()).isTrue(); for (int i = 0; i < DRAIN_THRESHOLD / 2; i++) { map.get(keyOne); } assertThat(segment.recencyQueue.isEmpty()).isFalse(); map.put(keyTwo, valueTwo); assertThat(segment.recencyQueue.isEmpty()).isTrue(); } } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 116.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
map.put(keyOne, valueOne); assertThat(segment.recencyQueue.isEmpty()).isTrue(); for (int i = 0; i < DRAIN_THRESHOLD / 2; i++) { map.get(keyOne); } assertThat(segment.recencyQueue.isEmpty()).isFalse(); map.put(keyTwo, valueTwo); assertThat(segment.recencyQueue.isEmpty()).isTrue(); } } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 114.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
assertThat(future.isDone()).isFalse(); assertThat(executedRunnables).isEmpty(); assertThat(pendingRunnables).hasSize(1); pendingRunnables.remove(0).run(); assertThat(future.isDone()).isTrue(); assertThat(executedRunnables).containsExactly(runnable); assertThat(pendingRunnables).isEmpty(); } public void testSubmit_runnable_throwsException() throws Exception {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
assertThat(future.isDone()).isFalse(); assertThat(executedRunnables).isEmpty(); assertThat(pendingRunnables).hasSize(1); pendingRunnables.remove(0).run(); assertThat(future.isDone()).isTrue(); assertThat(executedRunnables).containsExactly(runnable); assertThat(pendingRunnables).isEmpty(); } public void testSubmit_runnable_throwsException() throws Exception {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Maps.java
this.onBoth = unmodifiableMap(onBoth); this.differences = unmodifiableMap(differences); } @Override public boolean areEqual() { return onlyOnLeft.isEmpty() && onlyOnRight.isEmpty() && differences.isEmpty(); } @Override public Map<K, V> entriesOnlyOnLeft() { return onlyOnLeft; } @Override public Map<K, V> entriesOnlyOnRight() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 157.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/Maps.java
this.onBoth = unmodifiableMap(onBoth); this.differences = unmodifiableMap(differences); } @Override public boolean areEqual() { return onlyOnLeft.isEmpty() && onlyOnRight.isEmpty() && differences.isEmpty(); } @Override public Map<K, V> entriesOnlyOnLeft() { return onlyOnLeft; } @Override public Map<K, V> entriesOnlyOnRight() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 163.4K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/LocalCache.java
abstract class AbstractCacheSet<T> extends AbstractSet<T> { @Override public int size() { return LocalCache.this.size(); } @Override public boolean isEmpty() { return LocalCache.this.isEmpty(); } @Override public void clear() { LocalCache.this.clear(); } } final class KeySet extends AbstractCacheSet<K> {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 143.5K bytes - Click Count (0) -
guava/src/com/google/common/cache/LocalCache.java
abstract class AbstractCacheSet<T> extends AbstractSet<T> { @Override public int size() { return LocalCache.this.size(); } @Override public boolean isEmpty() { return LocalCache.this.isEmpty(); } @Override public void clear() { LocalCache.this.clear(); } } boolean removeIf(BiPredicate<? super K, ? super V> filter) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 148.9K bytes - Click Count (0) -
okhttp/src/androidMain/baseline-prof.txt
HSPLkotlin/collections/EmptyList;-><clinit>()V HSPLkotlin/collections/EmptyList;-><init>()V HSPLkotlin/collections/EmptyList;->isEmpty()Z HSPLkotlin/collections/EmptyList;->iterator()Ljava/util/Iterator; HSPLkotlin/collections/EmptyMap;-><clinit>()V HSPLkotlin/collections/EmptyMap;-><init>()V HSPLkotlin/collections/EmptyMap;->isEmpty()Z HSPLkotlin/collections/EmptySet;-><clinit>()V HSPLkotlin/collections/EmptySet;-><init>()V
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Dec 30 23:28:56 GMT 2024 - 127.9K bytes - Click Count (1) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
} protected void mergeModelBase_Modules( ModelBase target, ModelBase source, boolean sourceDominant, Map<Object, Object> context) { List<String> src = source.getModules(); if (!src.isEmpty()) { List<String> tgt = target.getModules(); List<String> merged = new ArrayList<>(tgt.size() + src.size()); merged.addAll(tgt); merged.addAll(src);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Apr 03 11:21:39 GMT 2025 - 99.2K bytes - Click Count (0)