- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for removeLoadingValue (0.06 seconds)
-
guava-tests/test/com/google/common/cache/LocalCacheTest.java
// absent assertThat(segment.removeLoadingValue(key, hash, valueRef)).isFalse(); // live table.set(0, entry); // don't increment count; this is used during computation assertThat(segment.removeLoadingValue(key, hash, valueRef)).isTrue(); // no notification sent with removeLoadingValue assertThat(map.removalNotificationQueue.isEmpty()).isTrue();Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 12 00:25:21 GMT 2025 - 117.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
// absent assertThat(segment.removeLoadingValue(key, hash, valueRef)).isFalse(); // live table.set(0, entry); // don't increment count; this is used during computation assertThat(segment.removeLoadingValue(key, hash, valueRef)).isTrue(); // no notification sent with removeLoadingValue assertThat(map.removalNotificationQueue.isEmpty()).isTrue();Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 12 00:25:21 GMT 2025 - 115.9K bytes - Click Count (0) -
guava/src/com/google/common/cache/LocalCache.java
throw new AssertionError("impossible; Futures.immediateFuture can't throw"); } } else if (createNewEntry || valueReference.isLoading()) { removeLoadingValue(key, hash, computingValueReference); return null; } else { removeEntry(e, hash, RemovalCause.EXPLICIT); return null; } } finally {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Sep 11 19:35:11 GMT 2025 - 148.9K bytes - Click Count (0)