Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Timestamped (0.33 sec)

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

        checkNotNull(value);
        Timestamped<V> oldValue = cachingHashMap.put(key, new Timestamped<V>(value, ticker));
        if (oldValue == null) {
          return null;
        }
        alertListenerIfPresent(key, oldValue.getValue(), RemovalCause.REPLACED);
        return oldValue.getValue();
      }
    
      @CanIgnoreReturnValue
      @Override
      public V remove(Object key) {
        Timestamped<V> stamped = cachingHashMap.remove(key);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  2. 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.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

             <match value="0x06092a864886f70d0107FFa0" type="string"
                     mask="0xFFFFFFFFFFFFFFFFFFFF00FF" offset="6"/>
          </match>
        </magic>
      </mime-type>
    
      <mime-type type="application/timestamped-data">
        <glob pattern="*.tsd"/>
        <magic priority="50">
          <match value="0x3080060B2A864886F7" type="string" offset="0"/>
        </magic>
      </mime-type>
    
      <mime-type type="application/pkix-cert">
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
Back to top