Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for drainRecencyQueue (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         */
        @GuardedBy("this")
        void recordWrite(ReferenceEntry<K, V> entry, int weight, long now) {
          // we are already under lock, so drain the recency queue immediately
          drainRecencyQueue();
          totalWeight += weight;
    
          if (map.recordsAccess()) {
            entry.setAccessTime(now);
          }
          if (map.recordsWrite()) {
            entry.setWriteTime(now);
          }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
Back to Top