Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getFirst (0.15 sec)

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

            if (weight > 0) {
              return e;
            }
          }
          throw new AssertionError();
        }
    
        /** Returns first entry of bin for given hash. */
        ReferenceEntry<K, V> getFirst(int hash) {
          // read this volatile field only once
          AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
          return table.get(hash & (table.length() - 1));
        }
    
    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)
  2. android/guava/src/com/google/common/cache/LocalCache.java

            if (weight > 0) {
              return e;
            }
          }
          throw new AssertionError();
        }
    
        /** Returns first entry of bin for given hash. */
        ReferenceEntry<K, V> getFirst(int hash) {
          // read this volatile field only once
          AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
          return table.get(hash & (table.length() - 1));
        }
    
    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)
  3. okhttp-android/src/main/baseline-prof.txt

    HSPLkotlinx/coroutines/DispatchedTask;->run()V
    HSPLkotlinx/coroutines/DispatchedTaskKt;->isCancellableMode(I)Z
    HSPLkotlinx/coroutines/Dispatchers;-><clinit>()V
    HSPLkotlinx/coroutines/Empty;-><init>(Z)V
    HSPLkotlinx/coroutines/Empty;->getList()Lkotlinx/coroutines/NodeList;
    HSPLkotlinx/coroutines/Empty;->isActive()Z
    HSPLkotlinx/coroutines/EventLoop;-><init>()V
    HSPLkotlinx/coroutines/EventLoop;->decrementUseCount(Z)V
    HSPLkotlinx/coroutines/EventLoop;->delta(Z)J
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
Back to top