Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setWriteTime (0.04 sec)

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

      /** Returns the time that this entry was last written, in ns. */
      @SuppressWarnings("GoodTime")
      long getWriteTime();
    
      /** 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);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 11 18:34:30 UTC 2025
    - 3.5K bytes
    - Viewed (0)
Back to top