Searched refs:BaseManager (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Doc/includes/ |
D | mp_newtype.py | 2 from multiprocessing.managers import BaseManager, BaseProxy 34 class MyManager(BaseManager):
|
/external/python/cpython2/Doc/includes/ |
D | mp_newtype.py | 10 from multiprocessing.managers import BaseManager, BaseProxy 44 class MyManager(BaseManager):
|
/external/python/cpython3/Doc/library/ |
D | multiprocessing.shared_memory.rst | 22 processes, a :class:`~multiprocessing.managers.BaseManager` subclass, 181 A subclass of :class:`~multiprocessing.managers.BaseManager` which can be 184 A call to :meth:`~multiprocessing.managers.BaseManager.start` on a 189 :meth:`~multiprocessing.managers.BaseManager.shutdown()` on the instance. 200 Refer to :class:`multiprocessing.managers.BaseManager` for a description
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 1368 .. class:: BaseManager([address[, authkey]]) 1370 Create a BaseManager object. 1394 >>> from multiprocessing.managers import BaseManager 1395 >>> manager = BaseManager(address=('', 50000), authkey='abc') 1405 >>> from multiprocessing.managers import BaseManager 1406 >>> m = BaseManager(address=('127.0.0.1', 5000), authkey='abc') 1453 :class:`BaseManager` instances also have one read-only property: 1462 A subclass of :class:`BaseManager` which can be used for the synchronization 1569 To create one's own manager, one creates a subclass of :class:`BaseManager` and 1570 uses the :meth:`~BaseManager.register` classmethod to register new types or [all …]
|
/external/python/cpython3/Lib/multiprocessing/ |
D | managers.py | 483 class BaseManager(object): class 1187 class SyncManager(BaseManager): 1306 class SharedMemoryManager(BaseManager): 1327 BaseManager.__init__(self, *args, **kwargs)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | managers.py | 466 class BaseManager(object): class 1088 class SyncManager(BaseManager):
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1431 from multiprocessing.managers import BaseManager, BaseProxy, RemoteError 1454 class MyManager(BaseManager): 1502 class QueueManager(BaseManager): 1506 class QueueManager2(BaseManager):
|
/external/python/cpython2/Doc/tools/ |
D | susp-ignored.csv | 83 library/multiprocessing,,`,# `BaseManager`.
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2807 from multiprocessing.managers import BaseManager, BaseProxy, RemoteError 2828 class MyManager(BaseManager): 2898 class QueueManager(BaseManager): 2902 class QueueManager2(BaseManager):
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 4053 exitcode 0. BaseManager._finalize_manager() sends SIGTERM to the manager
|
/external/python/cpython3/Misc/ |
D | HISTORY | 7315 - Issue #3518: Remove references to non-existent BaseManager.from_address()
|