Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        counter.recordLoadSuccess(Long.MAX_VALUE);
        counter.recordLoadSuccess(1);
        CacheStats stats = counter.snapshot();
        assertEquals(Long.MAX_VALUE, stats.totalLoadTime());
      }
    
      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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.3K bytes
    - Viewed (0)
Back to top