Searched defs:missCount (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/cache/
H A DCacheStats.java36 * <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount} are
39 * <li>When an exception is thrown while loading an entry, {@code missCount} and {@code
43 * for loading to complete (whether successful or not) and then increment {@code missCount}.
58 private final long missCount; field in class:CacheStats
70 public CacheStats(long hitCount, long missCount, long loadSuccessCount, argument
73 checkArgument(missCount >= 0);
80 this.missCount = missCount;
89 * uncached value. This is defined as {@code hitCount + missCount}.
92 return hitCount + missCount;
118 public long missCount() { method in class:CacheStats
[all...]
H A DAbstractCache.java206 private final AtomicLong missCount = new AtomicLong(); field in class:AbstractCache.SimpleStatsCounter
225 missCount.addAndGet(count);
249 missCount.get(),
262 missCount.addAndGet(otherStats.missCount());

Completed in 2921 milliseconds