Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testMapMethods (0.25 sec)

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

        cache.put(10, 20);
        assertEquals(Integer.valueOf(20), cache.getIfPresent(10));
    
        fakeTicker.advance(500, MILLISECONDS);
        assertEquals(null, cache.getIfPresent(10));
      }
    
      public void testMapMethods() {
        Cache<Integer, Integer> cache = CacheBuilder.newBuilder().build();
    
        ConcurrentMap<Integer, Integer> asMap = cache.asMap();
    
        cache.put(10, 100);
        cache.put(2, 52);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top