Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for getNextInWriteQueue (0.24 seconds)

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

      /** Sets the entry write time in ns. */
      @SuppressWarnings("GoodTime") // b/122668874
      void setWriteTime(long time);
    
      /** Returns the next entry in the write queue. */
      ReferenceEntry<K, V> getNextInWriteQueue();
    
      /** Sets the next entry in the write queue. */
      void setNextInWriteQueue(ReferenceEntry<K, V> next);
    
      /** Returns the previous entry in the write 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 write time in ns. */
      @SuppressWarnings("GoodTime") // b/122668874
      void setWriteTime(long time);
    
      /** Returns the next entry in the write queue. */
      ReferenceEntry<K, V> getNextInWriteQueue();
    
      /** Sets the next entry in the write queue. */
      void setNextInWriteQueue(ReferenceEntry<K, V> next);
    
      /** Returns the previous entry in the write 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. guava/src/com/google/common/cache/LocalCache.java

        public boolean isEmpty() {
          return head.getNextInWriteQueue() == head;
        }
    
        @Override
        public int size() {
          int size = 0;
          for (ReferenceEntry<K, V> e = head.getNextInWriteQueue();
              e != head;
              e = e.getNextInWriteQueue()) {
            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
    - 148.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

        public boolean isEmpty() {
          return head.getNextInWriteQueue() == head;
        }
    
        @Override
        public int size() {
          int size = 0;
          for (ReferenceEntry<K, V> e = head.getNextInWriteQueue();
              e != head;
              e = e.getNextInWriteQueue()) {
            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)
  5. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        }
      }
    
      private static <K, V> void assertConnected(
          LocalCache<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<K, V> two) {
        if (map.usesWriteQueue()) {
          assertThat(one.getNextInWriteQueue()).isSameInstanceAs(two);
        }
        if (map.usesAccessQueue()) {
          assertThat(one.getNextInAccessQueue()).isSameInstanceAs(two);
        }
      }
    
      public void testSegmentGetAndContains() {
    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)
  6. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        }
      }
    
      private static <K, V> void assertConnected(
          LocalCache<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<K, V> two) {
        if (map.usesWriteQueue()) {
          assertThat(one.getNextInWriteQueue()).isSameInstanceAs(two);
        }
        if (map.usesAccessQueue()) {
          assertThat(one.getNextInAccessQueue()).isSameInstanceAs(two);
        }
      }
    
      public void testSegmentGetAndContains() {
    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