Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for removeEldestEntry (0.5 sec)

  1. src/main/java/org/codelibs/core/collection/LruHashMap.java

         *
         * @return the upper limit on the number of entries
         */
        public int getLimitSize() {
            return limitSize;
        }
    
        @Override
        protected boolean removeEldestEntry(final Map.Entry<K, V> entry) {
            return size() > limitSize;
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          this.maximumSize = maximumSize;
          this.statsCounter = statsCounter;
          this.removalListener = removalListener;
        }
    
        @Override
        protected boolean removeEldestEntry(Entry<K, Timestamped<V>> ignored) {
          boolean removal = (maximumSize == UNSET_INT) ? false : (size() > maximumSize);
          if ((removalListener != null) && removal) {
            removalListener.onRemoval(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

        
        public HandleCache() {
            this.lruCache = new LinkedHashMap<String, HandleInfo>(maxHandles, 0.75f, true) {
                @Override
                protected boolean removeEldestEntry(Map.Entry<String, HandleInfo> eldest) {
                    if (size() > maxHandles) {
                        // Release least recently used non-persistent handle
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top