403Webshell
Server IP : 35.236.43.222  /  Your IP : 216.73.216.143
Web Server : Apache
System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64
User : deploy ( 1002)
PHP Version : 8.1.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/lib/google-cloud-sdk/lib/third_party/cachetools/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/lib/google-cloud-sdk/lib/third_party/cachetools//lru.py
from __future__ import absolute_import

import collections

from .cache import Cache


class LRUCache(Cache):
  """Least Recently Used (LRU) cache implementation."""

  def __init__(self, maxsize, getsizeof=None):
    Cache.__init__(self, maxsize, getsizeof)
    self.__order = collections.OrderedDict()

  def __getitem__(self, key, cache_getitem=Cache.__getitem__):
    value = cache_getitem(self, key)
    self.__update(key)
    return value

  def __setitem__(self, key, value, cache_setitem=Cache.__setitem__):
    cache_setitem(self, key, value)
    self.__update(key)

  def __delitem__(self, key, cache_delitem=Cache.__delitem__):
    cache_delitem(self, key)
    del self.__order[key]

  def popitem(self):
    """Remove and return the `(key, value)` pair least recently used."""
    try:
      key = next(iter(self.__order))
    except StopIteration:
      raise KeyError('%s is empty' % self.__class__.__name__)
    else:
      return (key, self.pop(key))

  if hasattr(collections.OrderedDict, 'move_to_end'):

    def __update(self, key):
      try:
        self.__order.move_to_end(key)
      except KeyError:
        self.__order[key] = None
  else:

    def __update(self, key):
      try:
        self.__order[key] = self.__order.pop(key)
      except KeyError:
        self.__order[key] = None

Youez - 2016 - github.com/yon3zu
LinuXploit