Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for AsMap (0.34 seconds)

  1. android/guava/src/com/google/common/collect/Maps.java

          return asMap(backingSet().subSet(fromKey, toKey), function);
        }
    
        @Override
        public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
          return asMap(backingSet().headSet(toKey), function);
        }
    
        @Override
        public SortedMap<K, V> tailMap(@ParametricNullness K fromKey) {
          return asMap(backingSet().tailSet(fromKey), function);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Maps.java

          return asMap(backingSet().subSet(fromKey, toKey), function);
        }
    
        @Override
        public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
          return asMap(backingSet().headSet(toKey), function);
        }
    
        @Override
        public SortedMap<K, V> tailMap(@ParametricNullness K fromKey) {
          return asMap(backingSet().tailSet(fromKey), function);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        // add a non-serializable entry
        one.getUnchecked(new Object());
        assertThat(one.size()).isEqualTo(1);
        assertThat(one.asMap().isEmpty()).isFalse();
        LocalLoadingCache<Object, Object> two = SerializableTester.reserialize(one);
        assertThat(two.size()).isEqualTo(0);
        assertThat(two.asMap().isEmpty()).isTrue();
    
        LocalCache<Object, Object> localCacheOne = one.localCache;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 116.4K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        // add a non-serializable entry
        one.getUnchecked(new Object());
        assertThat(one.size()).isEqualTo(1);
        assertThat(one.asMap().isEmpty()).isFalse();
        LocalLoadingCache<Object, Object> two = SerializableTester.reserialize(one);
        assertThat(two.size()).isEqualTo(0);
        assertThat(two.asMap().isEmpty()).isTrue();
    
        LocalCache<Object, Object> localCacheOne = one.localCache;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 114.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

          localCache.clear();
        }
    
        @Override
        public long size() {
          return localCache.longSize();
        }
    
        @Override
        public ConcurrentMap<K, V> asMap() {
          return localCache;
        }
    
        @Override
        public CacheStats stats() {
          SimpleStatsCounter aggregator = new SimpleStatsCounter();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  6. guava/src/com/google/common/cache/LocalCache.java

          localCache.clear();
        }
    
        @Override
        public long size() {
          return localCache.longSize();
        }
    
        @Override
        public ConcurrentMap<K, V> asMap() {
          return localCache;
        }
    
        @Override
        public CacheStats stats() {
          SimpleStatsCounter aggregator = new SimpleStatsCounter();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
Back to Top