Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Timestamped (0.05 seconds)

  1. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/CapacityEnforcingMap.java

     * limitations under the License.
     */
    
    package com.google.common.cache;
    
    import com.google.common.cache.AbstractCache.StatsCounter;
    import com.google.common.cache.LocalCache.Timestamped;
    import java.util.LinkedHashMap;
    import org.jspecify.annotations.Nullable;
    
    /**
     * LinkedHashMap that enforces its maximum size and logs events in a StatsCounter object and an
     * optional RemovalListener.
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 13:13:59 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  2. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

       * null when hasNext() has already been called.
       */
      private final class EntryIterator implements Iterator<Entry<K, V>> {
        final Iterator<Entry<K, Timestamped<V>>> iterator;
        @Nullable Entry<K, Timestamped<V>> lastEntry;
        @Nullable Entry<K, Timestamped<V>> nextEntry;
    
        EntryIterator() {
          this.iterator = LocalCache.this.cachingHashMap.entrySet().iterator();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 12:40:22 GMT 2026
    - 21.6K bytes
    - Click Count (0)
Back to Top