Home
last modified time | relevance | path

Searched refs:task_done (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Doc/library/
Dasyncio-queue.rst73 :meth:`task_done` to indicate that the item was retrieved and all
92 .. method:: task_done()
97 fetch a task, a subsequent call to :meth:`task_done` tells the
101 items have been processed (meaning that a :meth:`task_done`
174 queue.task_done()
Dqueue.rst167 .. method:: Queue.task_done()
171 :meth:`task_done` tells the queue that the processing on the task is complete.
174 processed (meaning that a :meth:`task_done` call was received for every item
186 The count goes down whenever a consumer thread calls :meth:`task_done` to
202 q.task_done()
Dmultiprocessing.rst693 :meth:`~queue.Queue.task_done` and :meth:`~queue.Queue.join` methods introduced
697 :meth:`JoinableQueue.task_done` for each task removed from the queue or else the
778 :meth:`~queue.Queue.task_done` and :meth:`~queue.Queue.join`.
908 additionally has :meth:`task_done` and :meth:`join` methods.
910 .. method:: task_done()
914 call to :meth:`task_done` tells the queue that the processing on the task
918 items have been processed (meaning that a :meth:`task_done` call was
931 :meth:`task_done` to indicate that the item was retrieved and all work on
/third_party/python/Lib/test/
Dtest_queue.py156 q.task_done()
160 q.task_done()
184 q.task_done()
197 q.task_done()
Dtest_logging.py3722 log_queue.task_done()
D_test_multiprocessing.py1095 q.task_done()
/third_party/libabigail/include/
Dabg-workers.h97 operator()(const task_sptr& task_done);
/third_party/python/Lib/unittest/
Dasync_case.py96 queue.task_done()
/third_party/python/Lib/asyncio/
Dqueues.py187 def task_done(self): member in Queue
/third_party/python/Lib/
Dqueue.py57 def task_done(self): member in Queue
/third_party/python/Lib/test/test_asyncio/
Dtest_queues.py607 self.assertRaises(ValueError, q.task_done)
626 q.task_done()
Dtest_tasks.py1166 task_done = False
1170 nonlocal task_done
1177 task_done = True
1186 self.assertTrue(task_done)
1194 task_done = False
1198 nonlocal task_done
1205 task_done = True
1214 self.assertTrue(task_done)
/third_party/python/Lib/multiprocessing/
Dqueues.py322 def task_done(self): member in JoinableQueue
/third_party/python/Lib/logging/
Dhandlers.py1545 q.task_done()
1549 q.task_done()
/third_party/python/Lib/lib2to3/
Drefactor.py724 self.queue.task_done()
/third_party/libabigail/tools/
Dabipkgdiff.cc2668 operator()(const task_sptr& task_done) in operator ()() argument
2670 compare_task_sptr comp_task = dynamic_pointer_cast<compare_task>(task_done); in operator ()()
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst1133 Fix :class:`~logging.handlers.QueueListener` to call ``queue.task_done()``
/third_party/python/Doc/whatsnew/
D3.5.rst815 :meth:`Queue.task_done() <asyncio.Queue.task_done>` queue methods.
D2.5.rst1504 the other new method, :meth:`task_done`, to signal that processing for an item
/third_party/python/Misc/
DHISTORY18972 - Queue.Queue objects now support .task_done() and .join() methods