Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for recordMisses (0.04 seconds)

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

  1. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          if (value == null) {
            statsCounter.recordMisses(1);
            return null;
          }
          if (!isExpired(value)) {
            statsCounter.recordHits(1);
            value.updateTimestamp();
            return value.getValue();
          }
    
          statsCounter.recordEviction();
          statsCounter.recordMisses(1);
          cachingHashMap.remove(key);
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 12:40:22 GMT 2026
    - 21.6K bytes
    - Click Count (0)
Back to Top