Lines Matching refs:Cache
16 base class for all object types which can be put into a Cache
17 - Cache -- A collection of objects which are derived from the base
44 'Cache',
429 def __init__(self, cache, obj):
430 self._cache = cache
483 class Cache(object):
486 if self.__class__ is Cache:
525 def _new_cache(self, cache):
529 """Return new cache containing subset of cache
531 Cretes a new cache containing all objects which match the
538 return self._new_cache(cache=c)
541 """Dump (print) cache as human readable text"""
551 """Remove all cache entries"""
554 # Called by sub classes to set first cache argument
559 # Called by sub classes to set second cache argument
565 """Clear cache and refill it"""
573 """Synchronize cache with content in kernel"""
580 """Provide this cache to others
584 "require" it. F.e. a link cache is generally provided
592 """Unprovide this cache
594 No longer make the cache available to others. If the cache
600 # Cache Manager (Work in Progress)