HomeSort by relevance Sort by last modified time
    Searched defs:loadExceptionCount (Results 1 - 4 of 4) sorted by null

  /external/guava/guava/src/com/google/common/cache/
AbstractCache.java 208 private final AtomicLong loadExceptionCount = new AtomicLong();
236 loadExceptionCount.incrementAndGet();
251 loadExceptionCount.get(),
264 loadExceptionCount.addAndGet(otherStats.loadExceptionCount());
CacheStats.java 40 * loadExceptionCount} are incremented, and the total loading time, in nanoseconds, is
60 private final long loadExceptionCount;
71 long loadExceptionCount, long totalLoadTime, long evictionCount) {
75 checkArgument(loadExceptionCount >= 0);
82 this.loadExceptionCount = loadExceptionCount;
128 * that {@code missCount >= loadSuccessCount + loadExceptionCount}. Multiple
139 * exceptions. This is defined as {@code loadSuccessCount + loadExceptionCount}.
142 return loadSuccessCount + loadExceptionCount;
149 * {@link #loadExceptionCount}). Multiple concurrent misses for the same key will result in
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderTest.java 599 assertEquals(exceptionCount.get() + computeNullCount.get(), stats.loadExceptionCount());
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 77 milliseconds