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

1 2 3

  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
X509KeyManagerTest.java 67 KeyManager[] managers = kmf.getKeyManagers(); local
68 for (KeyManager manager : managers) {
  /external/tensorflow/tensorflow/compiler/xla/service/
transfer_manager.cc 87 auto* managers = GetPlatformTransferManagers(); local
88 CHECK(managers->find(platform_id) == managers->end());
89 (*managers)[platform_id].creation_function = creation_function;
96 auto* managers = GetPlatformTransferManagers(); local
98 auto it = managers->find(platform->id());
99 if (it == managers->end()) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
contextlib.py 89 def nested(*managers):
90 """Combine multiple context managers into a single nested context manager.
97 used with a variable number of context managers as follows:
99 with nested(*managers):
103 warn("With-statements now directly support multiple context managers",
109 for mgr in managers:
  /external/python/cpython2/Lib/
contextlib.py 89 def nested(*managers):
90 """Combine multiple context managers into a single nested context manager.
97 used with a variable number of context managers as follows:
99 with nested(*managers):
103 warn("With-statements now directly support multiple context managers",
109 for mgr in managers:
  /prebuilts/gdb/darwin-x86/lib/python2.7/
contextlib.py 89 def nested(*managers):
90 """Combine multiple context managers into a single nested context manager.
97 used with a variable number of context managers as follows:
99 with nested(*managers):
103 warn("With-statements now directly support multiple context managers",
109 for mgr in managers:
  /prebuilts/gdb/linux-x86/lib/python2.7/
contextlib.py 89 def nested(*managers):
90 """Combine multiple context managers into a single nested context manager.
97 used with a variable number of context managers as follows:
99 with nested(*managers):
103 warn("With-statements now directly support multiple context managers",
109 for mgr in managers:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
contextlib.py 89 def nested(*managers):
90 """Combine multiple context managers into a single nested context manager.
97 used with a variable number of context managers as follows:
99 with nested(*managers):
103 warn("With-statements now directly support multiple context managers",
109 for mgr in managers:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
contextlib.py 89 def nested(*managers):
90 """Combine multiple context managers into a single nested context manager.
97 used with a variable number of context managers as follows:
99 with nested(*managers):
103 warn("With-statements now directly support multiple context managers",
109 for mgr in managers:
  /external/python/cpython3/Doc/includes/
mp_newtype.py 2 from multiprocessing.managers import BaseManager, BaseProxy
  /external/python/cpython2/Demo/tix/samples/
SHList2.py 77 managers = [
113 # Create the managers
116 for key,name,posn in managers :
  /external/python/cpython2/Doc/includes/
mp_newtype.py 10 from multiprocessing.managers import BaseManager, BaseProxy
  /external/python/cpython2/Lib/multiprocessing/
__init__.py 94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
97 from multiprocessing.managers import SyncManager
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
97 from multiprocessing.managers import SyncManager
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
97 from multiprocessing.managers import SyncManager
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
97 from multiprocessing.managers import SyncManager
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
97 from multiprocessing.managers import SyncManager
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_with.py 58 def __init__(self, *managers):
59 self.managers = managers
68 for mgr in self.managers:
93 def __init__(self, *managers):
94 Nested.__init__(self, *managers)
test_multiprocessing.py 31 import multiprocessing.managers
    [all...]
  /external/python/cpython2/Lib/test/
test_with.py 56 def __init__(self, *managers):
57 self.managers = managers
66 for mgr in self.managers:
91 def __init__(self, *managers):
92 Nested.__init__(self, *managers)
  /external/python/cpython3/Lib/test/
test_with.py 55 def __init__(self, *managers):
56 self.managers = managers
65 for mgr in self.managers:
90 def __init__(self, *managers):
91 Nested.__init__(self, *managers)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_with.py 58 def __init__(self, *managers):
59 self.managers = managers
68 for mgr in self.managers:
93 def __init__(self, *managers):
94 Nested.__init__(self, *managers)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_with.py 58 def __init__(self, *managers):
59 self.managers = managers
68 for mgr in self.managers:
93 def __init__(self, *managers):
94 Nested.__init__(self, *managers)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_with.py 58 def __init__(self, *managers):
59 self.managers = managers
68 for mgr in self.managers:
93 def __init__(self, *managers):
94 Nested.__init__(self, *managers)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_with.py 58 def __init__(self, *managers):
59 self.managers = managers
68 for mgr in self.managers:
93 def __init__(self, *managers):
94 Nested.__init__(self, *managers)
  /external/python/cpython3/Lib/multiprocessing/
context.py 51 The managers methods such as `Lock()`, `Condition()` and `Queue()`
54 from .managers import SyncManager

Completed in 940 milliseconds

1 2 3