Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for getNextInAccessQueue (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

      /** Sets the entry access time in ns. */
      @SuppressWarnings("GoodTime") // b/122668874
      void setAccessTime(long time);
    
      /** Returns the next entry in the access queue. */
      ReferenceEntry<K, V> getNextInAccessQueue();
    
      /** Sets the next entry in the access queue. */
      void setNextInAccessQueue(ReferenceEntry<K, V> next);
    
      /** Returns the previous entry in the access queue. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 13:13:59 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/cache/ReferenceEntry.java

      /** Sets the entry access time in ns. */
      @SuppressWarnings("GoodTime") // b/122668874
      void setAccessTime(long time);
    
      /** Returns the next entry in the access queue. */
      ReferenceEntry<K, V> getNextInAccessQueue();
    
      /** Sets the next entry in the access queue. */
      void setNextInAccessQueue(ReferenceEntry<K, V> next);
    
      /** Returns the previous entry in the access queue. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 13:13:59 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

        public boolean isEmpty() {
          return head.getNextInAccessQueue() == head;
        }
    
        @Override
        public int size() {
          int size = 0;
          for (ReferenceEntry<K, V> e = head.getNextInAccessQueue();
              e != head;
              e = e.getNextInAccessQueue()) {
            size++;
          }
          return size;
        }
    
        @Override
        public void clear() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        if (map.usesWriteQueue()) {
          assertThat(one.getNextInWriteQueue()).isSameInstanceAs(two);
        }
        if (map.usesAccessQueue()) {
          assertThat(one.getNextInAccessQueue()).isSameInstanceAs(two);
        }
      }
    
      public void testSegmentGetAndContains() {
        FakeTicker ticker = new FakeTicker();
        LocalCache<Object, Object> map =
            makeLocalCache(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 114.9K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        if (map.usesWriteQueue()) {
          assertThat(one.getNextInWriteQueue()).isSameInstanceAs(two);
        }
        if (map.usesAccessQueue()) {
          assertThat(one.getNextInAccessQueue()).isSameInstanceAs(two);
        }
      }
    
      public void testSegmentGetAndContains() {
        FakeTicker ticker = new FakeTicker();
        LocalCache<Object, Object> map =
            makeLocalCache(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 116.4K bytes
    - Click Count (0)
Back to Top