Home
last modified time | relevance | path

Searched refs:BoundedSemaphore (Results 1 – 25 of 34) sorted by relevance

12

/external/python/cpython2/Lib/multiprocessing/
D__init__.py199 def BoundedSemaphore(value=1): function
203 from multiprocessing.synchronize import BoundedSemaphore
204 return BoundedSemaphore(value)
Dqueues.py48 from .synchronize import Lock, BoundedSemaphore, Semaphore, Condition
69 self._sem = BoundedSemaphore(maxsize)
Dsynchronize.py127 class BoundedSemaphore(Semaphore): class
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py85 def BoundedSemaphore(self, value=1): member in BaseContext
87 from .synchronize import BoundedSemaphore
88 return BoundedSemaphore(value, ctx=self.get_context())
Dqueues.py49 self._sem = ctx.BoundedSemaphore(maxsize)
Dsynchronize.py142 class BoundedSemaphore(Semaphore): class
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_pep492.py50 asyncio.BoundedSemaphore(),
72 asyncio.BoundedSemaphore(),
Dtest_locks.py55 asyncio.BoundedSemaphore,
73 asyncio.BoundedSemaphore(),
924 sem = asyncio.BoundedSemaphore()
/external/python/cpython3/Doc/library/
Dasyncio-sync.rst30 * :class:`BoundedSemaphore`
325 Unlike :class:`BoundedSemaphore`, :class:`Semaphore` allows
329 BoundedSemaphore chapter
332 .. class:: BoundedSemaphore(value=1)
Dasyncio-api-index.rst186 * - :class:`BoundedSemaphore`
Dthreading.rst855 .. class:: BoundedSemaphore(value=1)
879 pool_sema = BoundedSemaphore(value=maxconnections)
1120 :class:`Semaphore`, and :class:`BoundedSemaphore` objects may be used as
/external/python/cpython2/Lib/test/
Dtest_dummy_threading.py39 sema = _threading.BoundedSemaphore(value=3)
Dtest_threading.py86 sema = threading.BoundedSemaphore(value=3)
468 bs = threading.BoundedSemaphore(limit)
889 semtype = staticmethod(threading.BoundedSemaphore)
Dtest_contextlib.py317 lock = threading.BoundedSemaphore()
/external/python/cpython2/Lib/multiprocessing/dummy/
D__init__.py53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/external/python/cpython3/Lib/multiprocessing/dummy/
D__init__.py26 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/external/python/cpython3/Lib/asyncio/
Dlocks.py404 class BoundedSemaphore(Semaphore): class
/external/python/cpython3/Lib/test/
Dtest_threading.py140 sema = threading.BoundedSemaphore(value=3)
777 bs = threading.BoundedSemaphore(limit)
1583 semtype = staticmethod(threading.BoundedSemaphore)
D_test_multiprocessing.py1286 sem = self.BoundedSemaphore(2)
5752 BoundedSemaphore = staticmethod(multiprocessing.BoundedSemaphore) variable in ProcessesMixin
5770 BoundedSemaphore = property(operator.attrgetter('manager.BoundedSemaphore')) variable in ManagerMixin
5836 BoundedSemaphore = staticmethod(multiprocessing.dummy.BoundedSemaphore) variable in ThreadsMixin
Dtest_contextlib.py376 lock = threading.BoundedSemaphore()
/external/python/cpython2/Doc/library/
Dthreading.rst144 .. function:: BoundedSemaphore([value])
690 pool_sema = BoundedSemaphore(value=maxconnections)
806 :class:`Semaphore`, and :class:`BoundedSemaphore` objects may be used as
Dmultiprocessing.rst219 :class:`Semaphore`, :class:`BoundedSemaphore`, :class:`Condition`,
941 .. class:: BoundedSemaphore([value])
944 :class:`threading.BoundedSemaphore`.
1092 The :meth:`acquire` method of :class:`BoundedSemaphore`, :class:`Lock`,
1106 blocked by a call to :meth:`BoundedSemaphore.acquire`, :meth:`Lock.acquire`,
1468 .. method:: BoundedSemaphore([value])
1470 Create a shared :class:`threading.BoundedSemaphore` object and return a
/external/python/cpython2/Lib/
Dthreading.py497 def BoundedSemaphore(*args, **kwargs): function
/external/python/cpython3/Lib/
Dthreading.py486 class BoundedSemaphore(Semaphore): class
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b1.rst675 asyncio.Lock, Condition, Semaphore, and BoundedSemaphore support new 'async

12