Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testSimpleStatsIncrementBy (0.14 sec)

  1. guava-tests/test/com/google/common/cache/AbstractCacheTest.java

        counter.recordLoadSuccess(1);
        CacheStats stats = counter.snapshot();
        assertThat(stats.totalLoadTime()).isEqualTo(Long.MAX_VALUE);
      }
    
      public void testSimpleStatsIncrementBy() {
        long totalLoadTime = 0;
    
        SimpleStatsCounter counter1 = new SimpleStatsCounter();
        for (int i = 0; i < 11; i++) {
          counter1.recordHits(1);
        }
        for (int i = 0; i < 13; i++) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top