/external/python/mock/mock/tests/ |
D | testsupport.py | 4 from .support import uncache 11 with uncache('sys'): pass 14 with uncache('mock.tests.support.bad'): pass
|
D | support.py | 24 def uncache(*names): function
|
D | testpatch.py | 12 from mock.tests.support import SomeClass, is_instance, uncache 1650 with uncache('squizz'): 1682 with uncache('squizz'):
|
/external/python/cpython3/Lib/test/test_importlib/frozen/ |
D | test_loader.py | 15 with util.uncache(name), captured_stdout() as stdout: 51 with util.uncache('__phello__'): 95 with util.uncache('__hello__'), captured_stdout() as stdout: 109 with util.uncache('__phello__'), captured_stdout() as stdout: 127 with util.uncache('__phello__', '__phello__.spam'), \ 145 with util.uncache('__hello__'), captured_stdout() as stdout: 155 with util.uncache('__hello__'), captured_stdout(): 164 with util.uncache('__hello__'), captured_stdout():
|
/external/python/cpython3/Lib/test/test_importlib/builtin/ |
D | test_finder.py | 17 with util.uncache(util.BUILTINS.good_name): 42 with util.uncache(util.BUILTINS.good_name): 60 with util.uncache(util.BUILTINS.good_name): 78 with util.uncache(util.BUILTINS.good_name):
|
D | test_loader.py | 31 with util.uncache(util.BUILTINS.good_name): 43 with util.uncache(util.BUILTINS.good_name): 60 with util.uncache(module_name):
|
/external/python/cpython3/Lib/test/test_importlib/import_/ |
D | test___loader__.py | 25 with util.uncache('blah'), util.import_state(meta_path=[loader]): 55 with util.uncache('blah'), util.import_state(meta_path=[loader]): 64 with util.uncache('blah'), util.import_state(meta_path=[loader]):
|
D | test_api.py | 68 with util.uncache(PKG_NAME): 79 with util.uncache(PKG_NAME): 91 with util.uncache(PKG_NAME, SUBMOD_NAME):
|
D | test_caching.py | 27 with util.uncache('some_module'): 35 with util.uncache(name):
|
D | test_relative_imports.py | 72 with util.uncache(*uncache_names):
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_api.py | 107 with test_util.uncache(name): 120 with test_util.uncache(name): 133 with test_util.uncache(name): 148 with test_util.uncache(name): 158 with test_util.uncache(name): 248 with test_util.uncache('spam'): 299 with test_util.uncache('spam'): 368 with test_util.uncache(name):
|
D | test_util.py | 157 with util.uncache(module_name): 175 with util.uncache(name): 187 with util.uncache(name): 195 with util.uncache(name): 214 with util.uncache(name): 233 with util.uncache(name): 241 with util.uncache(name): 410 with util.uncache(name): 422 with util.uncache(name): 434 with util.uncache(name): [all …]
|
D | test_lazy.py | 82 with test_util.uncache(importer.module_name): 129 with test_util.uncache(TestingImporter.module_name): 137 with test_util.uncache(TestingImporter.module_name):
|
D | util.py | 133 def uncache(*names): function 162 with uncache(name, *conflicts): 246 self._uncache = uncache(*self.modules.keys()) 389 uncache_manager = uncache(*import_names)
|
D | test_abc.py | 462 with test_util.uncache(name): 480 with test_util.uncache(name): 839 with test_util.uncache(self.name): 852 with test_util.uncache(self.name):
|
/external/python/cpython3/Lib/test/test_importlib/extension/ |
D | test_loader.py | 43 with util.uncache(util.EXTENSIONS.name): 60 with util.uncache(util.EXTENSIONS.name): 108 with util.uncache(self.name): 122 with util.uncache(self.name): 142 with util.uncache(self.name):
|
/external/python/cpython2/Lib/test/ |
D | test_importlib.py | 9 def uncache(*names): function 108 self._uncache = uncache(*self.modules.keys())
|
/external/python/cpython3/Lib/test/ |
D | test_pyclbr.py | 255 with test_importlib_util.uncache(module_name):
|
/external/python/cpython3/Tools/importbench/ |
D | importbench.py | 46 with util.uncache(name):
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | MessageChannel.java | 80 protected void uncache() {} in uncache() method in MessageChannel
|
D | TCPMessageChannel.java | 668 protected void uncache() { in uncache() method in TCPMessageChannel
|
D | TLSMessageChannel.java | 647 protected void uncache() { in uncache() method in TLSMessageChannel
|
/external/python/cpython3/Lib/test/test_import/ |
D | __init__.py | 28 from test.test_importlib.util import uncache 800 with uncache('submodule1', 'submodule2'), DirsOnSysPath(path): 807 with uncache('package2', 'package2.submodule1', 'package2.submodule2'), \
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_discovery.py | 853 with test.test_importlib.util.uncache('package'): 870 with test.test_importlib.util.uncache('package'):
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testpatch.py | 13 from test.test_importlib.util import uncache 1656 with uncache('squizz'): 1688 with uncache('squizz'):
|