Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unload (0.18 sec)

  1. android/guava/src/com/google/common/cache/CacheLoader.java

        }
    
        @Override
        public V load(K key) {
          return computingFunction.apply(checkNotNull(key));
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a {@code CacheLoader} which wraps {@code loader}, executing calls to {@link
       * CacheLoader#reload} using {@code executor}.
       *
       * <p>This method is useful only when {@code loader.reload} has a synchronous implementation, such
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Dec 19 20:20:14 GMT 2022
    - 9.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheLoader.java

        }
    
        @Override
        public V load(K key) {
          return computingFunction.apply(checkNotNull(key));
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a {@code CacheLoader} which wraps {@code loader}, executing calls to {@link
       * CacheLoader#reload} using {@code executor}.
       *
       * <p>This method is useful only when {@code loader.reload} has a synchronous implementation, such
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Dec 19 20:20:14 GMT 2022
    - 9.5K bytes
    - Viewed (0)
Back to top