Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for external (0.3 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

            try {
              drainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        /**
         * Drain the key and value reference queues, cleaning up internal entries containing garbage
         * collected keys or values.
         */
        @GuardedBy("this")
        void drainReferenceQueues() {
          if (map.usesKeyReferences()) {
            drainKeyReferenceQueue();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        }
        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
          // will be resized. That threshold is ceilingPowerOfTwo(capacity*loadFactor), where
          // loadFactor is 0.75 by default. So with the calculation here we ensure that the
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

            try {
              drainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        /**
         * Drain the key and value reference queues, cleaning up internal entries containing garbage
         * collected keys or values.
         */
        @GuardedBy("this")
        void drainReferenceQueues() {
          if (map.usesKeyReferences()) {
            drainKeyReferenceQueue();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top