Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadSync (0.25 sec)

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

            recordRead(e, now);
            return value;
          } finally {
            statsCounter.recordMisses(1);
          }
        }
    
        // at most one of loadSync/loadAsync may be called for any given LoadingValueReference
    
        V loadSync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
            CacheLoader<? super K, V> loader)
            throws ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

              return null;
            }
          } finally {
            unlock();
            postWriteCleanup();
          }
        }
    
        // at most one of loadSync/loadAsync may be called for any given LoadingValueReference
    
        V loadSync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
            CacheLoader<? super K, V> loader)
            throws ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top