Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mapMethods (0.05 sec)

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

        assertThat(cache.getIfPresent(10)).isNull();
      }
    
      @SuppressWarnings("ContainsEntryAfterGetInteger") // we are testing our implementation of Map.get
      @Test
      public void mapMethods() {
        Cache<Integer, Integer> cache = CacheBuilder.newBuilder().build();
    
        ConcurrentMap<Integer, Integer> asMap = cache.asMap();
    
        cache.put(10, 100);
        cache.put(2, 52);
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 14.8K bytes
    - Viewed (0)
Back to top