Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Chalin (0.15 sec)

  1. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        ReferenceEntry<Object, Object> entry = null;
        for (int i = 0; i < originalCount; i++) {
          Object key = new Object();
          Object value = new Object();
          int hash = map.hash(key);
          // chain all entries together as we only have a single bucket
          entry = map.newEntry(key, hash, entry);
          ValueReference<Object, Object> valueRef = map.newValueReference(entry, value, 1);
          entry.setValueReference(valueRef);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        ReferenceEntry<Object, Object> entry = null;
        for (int i = 0; i < originalCount; i++) {
          Object key = new Object();
          Object value = new Object();
          int hash = map.hash(key);
          // chain all entries together as we only have a single bucket
          entry = map.newEntry(key, hash, entry);
          ValueReference<Object, Object> valueRef = map.newValueReference(entry, value, 1);
          entry.setValueReference(valueRef);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

              nextTableIndex = currentTable.length() - 1;
              if (nextInTable()) {
                return;
              }
            }
          }
        }
    
        /** Finds the next entry in the current chain. Returns true if an entry was found. */
        boolean nextInChain() {
          if (nextEntry != null) {
            for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
    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)
  4. android/guava/src/com/google/common/cache/LocalCache.java

              nextTableIndex = currentTable.length() - 1;
              if (nextInTable()) {
                return;
              }
            }
          }
        }
    
        /** Finds the next entry in the current chain. Returns true if an entry was found. */
        boolean nextInChain() {
          if (nextEntry != null) {
            for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
    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