Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for Timestamped (0.08 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)
  3. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            protected String getUrl() {
                if (url != null) {
                    return url;
                }
                return id;
            }
        }
    
        /**
         * Statistics data object that stores timestamped events and maintains reference counting.
         * Extends LinkedHashMap to store event names mapped to their timestamps.
         * Includes reference counting for multi-threaded access tracking.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 17.4K bytes
    - Click Count (0)
Back to Top