Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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();
          }
        }
    
        /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. 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();
          }
        }
    
        /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. 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();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top