Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setNextInWriteQueue (0.18 sec)

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

      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. */
      ReferenceEntry<K, V> getPreviousInWriteQueue();
    
      /** Sets the previous entry in the write queue. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 11 18:34:30 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        private ReferenceEntry<K, V> nextWrite = nullEntry();
    
        @Override
        public ReferenceEntry<K, V> getNextInWriteQueue() {
          return nextWrite;
        }
    
        @Override
        public void setNextInWriteQueue(ReferenceEntry<K, V> next) {
          this.nextWrite = next;
        }
    
        private ReferenceEntry<K, V> previousWrite = nullEntry();
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
Back to top