Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 32 of 32 for LoadingCache (0.07 seconds)

  1. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

       *
       * @param <K> the base key type
       * @param <V> the base value type
       */
      public static class LocalLoadingCache<K, V> extends LocalManualCache<K, V>
          implements LoadingCache<K, V> {
    
        LocalLoadingCache(
            CacheBuilder<? super K, ? super V> builder, CacheLoader<? super K, V> loader) {
          super(builder, checkNotNull(loader));
        }
    
        // Cache methods
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 21.8K bytes
    - Click Count (0)
  2. guava/src/com/google/common/cache/LocalCache.java

       */
      static final class LoadingSerializationProxy<K, V> extends ManualSerializationProxy<K, V>
          implements LoadingCache<K, V> {
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 1;
    
        transient @Nullable LoadingCache<K, V> autoDelegate;
    
        LoadingSerializationProxy(LocalCache<K, V> cache) {
          super(cache);
        }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 19:35:11 GMT 2025
    - 148.9K bytes
    - Click Count (0)
Back to Top