Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 11 of 11 for getAllPresent (0.1 seconds)

  1. guava/src/com/google/common/cache/LocalCache.java

                  return valueLoader.call();
                }
              });
        }
    
        @Override
        public ImmutableMap<K, V> getAllPresent(Iterable<?> keys) {
          return localCache.getAllPresent(keys);
        }
    
        @Override
        public void put(K key, V value) {
          localCache.put(key, value);
        }
    
        @Override
    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