Searched defs:LRUCache (Results 1 – 5 of 5) sorted by relevance
40 public class LRUCache<K, V> { class52 public LRUCache(int cacheSize) { in LRUCache() method in LRUCache
49 private static class LRUCache<K, V> { class in RegexCache55 public LRUCache(int size) { in LRUCache() method in RegexCache.LRUCache
114 static class LRUCache<K, V> extends LinkedHashMap<K, V> { class in LoadPathToFileCache118 LRUCache(int capacity) { in LRUCache() method in LoadPathToFileCache.LRUCache
74 class LRUCache(object): class
640 class LRUCache(dict): class