- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getNextInWriteQueue (0.22 sec)
-
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. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 11 18:34:30 UTC 2025 - 3.5K bytes - Viewed (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()) { assertSame(two, one.getNextInWriteQueue()); } if (map.usesAccessQueue()) { assertSame(two, one.getNextInAccessQueue()); } } public void testSegmentGetAndContains() { FakeTicker ticker = new FakeTicker();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0)