Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for loadSuccessCount (0.12 seconds)

  1. android/guava/src/com/google/common/cache/CacheStats.java

       * on calls to {@code getIfPresent}.
       */
      public long loadExceptionCount() {
        return loadExceptionCount;
      }
    
      /**
       * Returns the ratio of cache loading attempts which threw exceptions. This is defined as {@code
       * loadExceptionCount / (loadSuccessCount + loadExceptionCount)}, or {@code 0.0} when {@code
       * loadSuccessCount + loadExceptionCount == 0}.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/cache/CacheStats.java

       * on calls to {@code getIfPresent}.
       */
      public long loadExceptionCount() {
        return loadExceptionCount;
      }
    
      /**
       * Returns the ratio of cache loading attempts which threw exceptions. This is defined as {@code
       * loadExceptionCount / (loadSuccessCount + loadExceptionCount)}, or {@code 0.0} when {@code
       * loadSuccessCount + loadExceptionCount == 0}.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

              .isEqualTo(notification.getKey());
        }
    
        CacheStats stats = cache.stats();
        assertThat(stats.evictionCount()).isEqualTo(removalListener.size());
        assertThat(stats.loadSuccessCount()).isEqualTo(computeCount.get());
        assertThat(stats.loadExceptionCount()).isEqualTo(exceptionCount.get() + computeNullCount.get());
        // each computed value is still in the cache, or was passed to the removal listener
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

              .isEqualTo(notification.getKey());
        }
    
        CacheStats stats = cache.stats();
        assertThat(stats.evictionCount()).isEqualTo(removalListener.size());
        assertThat(stats.loadSuccessCount()).isEqualTo(computeCount.get());
        assertThat(stats.loadExceptionCount()).isEqualTo(exceptionCount.get() + computeNullCount.get());
        // each computed value is still in the cache, or was passed to the removal listener
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 25.6K bytes
    - Click Count (0)
Back to Top