HomeSort by relevance Sort by last modified time
    Searched refs:_cache (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/tensorflow/tensorflow/python/summary/writer/
writer_cache.py 35 _cache = {} variable in class:FileWriterCache
46 for item in FileWriterCache._cache.values():
48 FileWriterCache._cache = {}
61 if logdir not in FileWriterCache._cache:
62 FileWriterCache._cache[logdir] = FileWriter(
64 return FileWriterCache._cache[logdir]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
51 re_pat = _cache[pat]
54 if len(_cache) >= _MAXCACHE:
55 _cache.clear()
56 _cache[pat] = re_pat = re.compile(res)
77 re_pat = _cache[pat]
80 if len(_cache) >= _MAXCACHE:
81 _cache.clear()
82 _cache[pat] = re_pat = re.compile(res)
    [all...]
  /external/python/cpython2/Lib/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
51 re_pat = _cache[pat]
54 if len(_cache) >= _MAXCACHE:
55 _cache.clear()
56 _cache[pat] = re_pat = re.compile(res)
77 re_pat = _cache[pat]
80 if len(_cache) >= _MAXCACHE:
81 _cache.clear()
82 _cache[pat] = re_pat = re.compile(res
    [all...]
  /external/libunwind/doc/
unw_flush_cache.tex 8 \begin{Name}{3}{unw\_flush\_cache}{David Mosberger-Tang}{Programming Library}{unw\_flush\_cache}unw\_flush\_cache -- flush cached info
15 \Type{void} \Func{unw\_flush\_cache}(\Type{unw\_addr\_space\_t} \Var{as}, \Type{unw\_word\_t} \Var{lo}, \Type{unw\_word\_t} \Var{hi});\\
19 The \Func{unw\_flush\_cache}() routine flushes all cached info as it
27 \Func{unw\_flush\_cache}() may flush more information than requested,
28 but \emph{never} less. In other words, \Func{unw\_flush\_cache}() may
36 The \Func{unw\_flush\_cache}() routine cannot fail and does not
41 The \Func{unw\_flush\_cache}() routine is thread-safe as well as safe to
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /external/python/cpython2/Lib/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
visitor.py 36 self._cache = {}
45 meth = self._cache.get(klass, None)
49 self._cache[klass] = meth
76 meth = self._cache.get(node.__class__, None)
80 self._cache[node.__class__] = meth
  /external/python/cpython2/Lib/compiler/
visitor.py 36 self._cache = {}
45 meth = self._cache.get(klass, None)
49 self._cache[klass] = meth
76 meth = self._cache.get(node.__class__, None)
80 self._cache[node.__class__] = meth
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
visitor.py 36 self._cache = {}
45 meth = self._cache.get(klass, None)
49 self._cache[klass] = meth
76 meth = self._cache.get(node.__class__, None)
80 self._cache[node.__class__] = meth
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
visitor.py 36 self._cache = {}
45 meth = self._cache.get(klass, None)
49 self._cache[klass] = meth
76 meth = self._cache.get(node.__class__, None)
80 self._cache[node.__class__] = meth
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 36 self._cache = {}
45 meth = self._cache.get(klass, None)
49 self._cache[klass] = meth
76 meth = self._cache.get(node.__class__, None)
80 self._cache[node.__class__] = meth
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 36 self._cache = {}
45 meth = self._cache.get(klass, None)
49 self._cache[klass] = meth
76 meth = self._cache.get(node.__class__, None)
80 self._cache[node.__class__] = meth
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
find_recursionlimit.py 73 def test_cpickle(_cache={}):
82 l = _cache[n]
88 _cache[n] = l
  /external/python/cpython2/Tools/scripts/
find_recursionlimit.py 73 def test_cpickle(_cache={}):
82 l = _cache[n]
88 _cache[n] = l
  /external/python/cpython3/Tools/scripts/
find_recursionlimit.py 73 def test_cpickle(_cache={}):
83 l = _cache[n]
90 _cache[n] = l
  /external/toolchain-utils/bestflags/
pipeline_process.py 70 self._cache = cache
94 args=(self._stage, self._cache, self._helper_queue, self._work_queue,
97 mycache = self._cache.keys()

Completed in 605 milliseconds

1 2 3 4 5 6