Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getValueReferenceQueueForTesting (0.31 sec)

  1. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

            assertFalse(map.containsKey(keyOne));
            assertFalse(map.containsValue(valueOne));
            assertNull(map.get(keyOne));
            assertEquals(1, map.size());
            assertNull(segment.getValueReferenceQueueForTesting().poll());
          }
        }
      }
    
      public void testDrainKeyReferenceQueueOnRead() {
        for (MapMaker maker : allWeakKeyStrengthMakers()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

            assertFalse(map.containsKey(keyOne));
            assertFalse(map.containsValue(valueOne));
            assertNull(map.get(keyOne));
            assertEquals(1, map.size());
            assertNull(segment.getValueReferenceQueueForTesting().poll());
          }
        }
      }
    
      public void testDrainKeyReferenceQueueOnRead() {
        for (MapMaker maker : allWeakKeyStrengthMakers()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        ReferenceQueue<K> getKeyReferenceQueueForTesting() {
          throw new AssertionError();
        }
    
        /** Unsafely extracts the value reference queue used by this segment. */
        ReferenceQueue<V> getValueReferenceQueueForTesting() {
          throw new AssertionError();
        }
    
        /** Unsafely extracts the weak value reference inside of the given {@code entry}. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
Back to top