Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for reclaimKey (0.04 sec)

  1. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertThat(listener.getCount()).isEqualTo(0);
        assertThat(segment.reclaimKey(entryOne, hashOne)).isFalse();
        assertThat(listener.getCount()).isEqualTo(0);
        table.set(0, entryOne);
        assertThat(segment.reclaimKey(entryTwo, hashTwo)).isFalse();
        assertThat(listener.getCount()).isEqualTo(0);
        table.set(0, entryTwo);
        assertThat(segment.reclaimKey(entryThree, hashThree)).isFalse();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 115.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertThat(listener.getCount()).isEqualTo(0);
        assertThat(segment.reclaimKey(entryOne, hashOne)).isFalse();
        assertThat(listener.getCount()).isEqualTo(0);
        table.set(0, entryOne);
        assertThat(segment.reclaimKey(entryTwo, hashTwo)).isFalse();
        assertThat(listener.getCount()).isEqualTo(0);
        table.set(0, entryTwo);
        assertThat(segment.reclaimKey(entryThree, hashThree)).isFalse();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 117.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

      @Nullable FinalizableWeakReference<Object> reference;
    
      /** Create the FRQ in a method that goes out of scope so that we're sure it will be reclaimed. */
      private void weaklyReferenceQueue() {
        frq = new FinalizableReferenceQueue();
        queueReference = new WeakReference<>(frq.queue);
    
        /*
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:07:52 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p>If {@link #weakKeys weakKeys}, {@link #weakValues weakValues}, or {@link #softValues
     * softValues} are requested, it is possible for a key or value present in the cache to be reclaimed
     * by the garbage collector. Entries with reclaimed keys or values may be removed from the cache on
     * each cache modification, on occasional cache accesses, or on calls to {@link Cache#cleanUp}; such
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p>If {@link #weakKeys weakKeys}, {@link #weakValues weakValues}, or {@link #softValues
     * softValues} are requested, it is possible for a key or value present in the cache to be reclaimed
     * by the garbage collector. Entries with reclaimed keys or values may be removed from the cache on
     * each cache modification, on occasional cache accesses, or on calls to {@link Cache#cleanUp}; such
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.6K bytes
    - Viewed (0)
Back to top