- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for getNextInWriteQueue (0.09 seconds)
-
guava/src/com/google/common/cache/ReferenceEntry.java
/** Sets the entry write time in ns. */ @SuppressWarnings("GoodTime") // b/122668874 void setWriteTime(long time); /** Returns the next entry in the write queue. */ ReferenceEntry<K, V> getNextInWriteQueue(); /** Sets the next entry in the write queue. */ void setNextInWriteQueue(ReferenceEntry<K, V> next); /** Returns the previous entry in the write queue. */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 3.5K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/ReferenceEntry.java
/** Sets the entry write time in ns. */ @SuppressWarnings("GoodTime") // b/122668874 void setWriteTime(long time); /** Returns the next entry in the write queue. */ ReferenceEntry<K, V> getNextInWriteQueue(); /** Sets the next entry in the write queue. */ void setNextInWriteQueue(ReferenceEntry<K, V> next); /** Returns the previous entry in the write queue. */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 3.5K bytes - Click Count (0) -
guava/src/com/google/common/cache/LocalCache.java
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) -
android/guava/src/com/google/common/cache/LocalCache.java
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) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
} } private static <K, V> void assertConnected( LocalCache<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<K, V> two) { if (map.usesWriteQueue()) { assertThat(one.getNextInWriteQueue()).isSameInstanceAs(two); } if (map.usesAccessQueue()) { assertThat(one.getNextInAccessQueue()).isSameInstanceAs(two); } } public void testSegmentGetAndContains() {
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) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
} } private static <K, V> void assertConnected( LocalCache<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<K, V> two) { if (map.usesWriteQueue()) { assertThat(one.getNextInWriteQueue()).isSameInstanceAs(two); } if (map.usesAccessQueue()) { assertThat(one.getNextInAccessQueue()).isSameInstanceAs(two); } } public void testSegmentGetAndContains() {
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)