Home
last modified time | relevance | path

Searched refs:BoundedSemaphore (Results 1 – 25 of 33) 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
Dmanagers.py1105 SyncManager.register('BoundedSemaphore', threading.BoundedSemaphore,
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py84 def BoundedSemaphore(self, value=1): member in BaseContext
86 from .synchronize import BoundedSemaphore
87 return BoundedSemaphore(value, ctx=self.get_context())
Dqueues.py48 self._sem = ctx.BoundedSemaphore(maxsize)
Dsynchronize.py143 class BoundedSemaphore(Semaphore): class
/external/python/cpython3/Doc/library/
Dasyncio-sync.rst16 * :class:`BoundedSemaphore`
21 :class:`~threading.BoundedSemaphore`), but it has no *timeout* parameter. The
285 BoundedSemaphore section in Semaphores
288 .. class:: BoundedSemaphore(value=1, \*, loop=None)
Dthreading.rst731 .. class:: BoundedSemaphore(value=1)
755 pool_sema = BoundedSemaphore(value=maxconnections)
994 :class:`Semaphore`, and :class:`BoundedSemaphore` objects may be used as
Dmultiprocessing.rst323 :class:`RLock`, :class:`Semaphore`, :class:`BoundedSemaphore`,
1159 .. class:: BoundedSemaphore([value])
1162 :class:`threading.BoundedSemaphore`.
1313 blocked by a call to :meth:`BoundedSemaphore.acquire`, :meth:`Lock.acquire`,
1699 .. method:: BoundedSemaphore([value])
1701 Create a shared :class:`threading.BoundedSemaphore` object and return a
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_pep492.py35 asyncio.BoundedSemaphore(loop=self.loop),
57 asyncio.BoundedSemaphore(loop=self.loop),
/external/python/cpython3/Lib/test/
Dtest_dummy_threading.py39 sema = _threading.BoundedSemaphore(value=3)
Dtest_threading.py95 sema = threading.BoundedSemaphore(value=3)
606 bs = threading.BoundedSemaphore(limit)
1118 semtype = staticmethod(threading.BoundedSemaphore)
D_test_multiprocessing.py806 sem = self.BoundedSemaphore(2)
3892 BoundedSemaphore = staticmethod(multiprocessing.BoundedSemaphore) variable in ProcessesMixin
3910 BoundedSemaphore = property(operator.attrgetter('manager.BoundedSemaphore')) variable in ManagerMixin
3962 BoundedSemaphore = staticmethod(multiprocessing.dummy.BoundedSemaphore) variable in ThreadsMixin
Dtest_contextlib.py284 lock = threading.BoundedSemaphore()
/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/cpython3/Lib/multiprocessing/dummy/
D__init__.py26 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/external/python/cpython2/Lib/multiprocessing/dummy/
D__init__.py53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/external/python/cpython3/Lib/asyncio/
Dlocks.py464 class BoundedSemaphore(Semaphore): class
/external/python/cpython3/Lib/
Dthreading.py449 class BoundedSemaphore(Semaphore): class
/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`,
936 .. class:: BoundedSemaphore([value])
939 :class:`threading.BoundedSemaphore`.
1087 The :meth:`acquire` method of :class:`BoundedSemaphore`, :class:`Lock`,
1101 blocked by a call to :meth:`BoundedSemaphore.acquire`, :meth:`Lock.acquire`,
1463 .. method:: BoundedSemaphore([value])
1465 Create a shared :class:`threading.BoundedSemaphore` object and return a
/external/python/cpython2/Lib/
Dthreading.py497 def BoundedSemaphore(*args, **kwargs): function

12