- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for removeOldestEntry (0.08 sec)
-
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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactLinkedHashMap.java
@GwtIncompatible // not worth using in GWT for now final class CompactLinkedHashMap<K extends @Nullable Object, V extends @Nullable Object> extends CompactHashMap<K, V> { // TODO(lowasser): implement removeEldestEntry so this can be used as a drop-in replacement /** Creates an empty {@code CompactLinkedHashMap} instance. */ public static <K extends @Nullable Object, V extends @Nullable Object>
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 14:59:07 UTC 2025 - 8.4K bytes - Viewed (0)