Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getOrLoad (0.26 seconds)

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

        @SuppressWarnings("unchecked")
        K castKey = (K) key;
        alertListenerIfPresent(castKey, value.getValue(), RemovalCause.EXPIRED);
        return null;
      }
    
      private V getOrLoad(K key) throws ExecutionException {
        synchronized (lock) {
          V value = get(key);
          if (value != null) {
            return value;
          }
          return load(key);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 12:40:22 GMT 2026
    - 21.6K bytes
    - Click Count (0)
Back to Top