Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getValueReferenceQueueForTesting (0.13 seconds)

  1. 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}. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (0)
  2. 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}. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

            assertFalse(map.containsKey(keyOne));
            assertFalse(map.containsValue(valueOne));
            assertThat(map.get(keyOne)).isNull();
            assertEquals(1, map.size());
            assertThat(segment.getValueReferenceQueueForTesting().poll()).isNull();
          }
        }
      }
    
      public void testDrainKeyReferenceQueueOnRead() {
        for (MapMaker maker : allWeakKeyStrengthMakers()) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 36K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

            assertFalse(map.containsKey(keyOne));
            assertFalse(map.containsValue(valueOne));
            assertThat(map.get(keyOne)).isNull();
            assertEquals(1, map.size());
            assertThat(segment.getValueReferenceQueueForTesting().poll()).isNull();
          }
        }
      }
    
      public void testDrainKeyReferenceQueueOnRead() {
        for (MapMaker maker : allWeakKeyStrengthMakers()) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 36K bytes
    - Click Count (0)
Back to Top