Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newValueReference (0.12 sec)

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

          entryOne.setValueReference(map.newValueReference(entryOne, valueOne, 1));
    
          Object keyTwo = new Object();
          Object valueTwo = new Object();
          int hashTwo = map.hash(keyTwo);
          ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
          entryTwo.setValueReference(map.newValueReference(entryTwo, valueTwo, 1));
          if (map.usesAccessQueue()) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 110.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          entryOne.setValueReference(map.newValueReference(entryOne, valueOne, 1));
    
          Object keyTwo = new Object();
          Object valueTwo = new Object();
          int hashTwo = map.hash(keyTwo);
          ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
          entryTwo.setValueReference(map.newValueReference(entryTwo, valueTwo, 1));
          if (map.usesAccessQueue()) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 112.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

          @SuppressWarnings("unchecked")
          WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>> newValueReference =
              (WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>>) valueReference;
          WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>> previous = entry.valueReference;
          entry.valueReference = newValueReference;
          previous.clear();
        }
    
        @Override
        void maybeDrainReferenceQueues() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          @SuppressWarnings("unchecked")
          WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>> newValueReference =
              (WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>>) valueReference;
          WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>> previous = entry.valueReference;
          entry.valueReference = newValueReference;
          previous.clear();
        }
    
        @Override
        void maybeDrainReferenceQueues() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

      }
    
      /**
       * This method is a convenience for testing. Code should call {@link Segment#setValue} instead.
       */
      // Guarded By Segment.this
      @VisibleForTesting
      ValueReference<K, V> newValueReference(ReferenceEntry<K, V> entry, V value, int weight) {
        int hash = entry.getHash();
        return valueStrength.referenceValue(segmentFor(hash), entry, checkNotNull(value), weight);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top