Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for postReadCleanup (0.19 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          } finally {
            postReadCleanup();
          }
        }
    
        boolean containsKey(Object key, int hash) {
          try {
            if (count != 0) { // read-volatile
              E e = getLiveEntry(key, hash);
              return e != null && e.getValue() != null;
            }
    
            return false;
          } finally {
            postReadCleanup();
          }
        }
    
        /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

            } else if (cause instanceof RuntimeException) {
              throw new UncheckedExecutionException(cause);
            }
            throw ee;
          } finally {
            postReadCleanup();
          }
        }
    
        @CheckForNull
        V get(Object key, int hash) {
          try {
            if (count != 0) { // read-volatile
              long now = map.ticker.read();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

            } else if (cause instanceof RuntimeException) {
              throw new UncheckedExecutionException(cause);
            }
            throw ee;
          } finally {
            postReadCleanup();
          }
        }
    
        @CheckForNull
        V get(Object key, int hash) {
          try {
            if (count != 0) { // read-volatile
              long now = map.ticker.read();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top