Searched defs:task_done (Results 1 - 4 of 4) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A DQueue.py45 def task_done(self): member in class:Queue
49 a subsequent call to task_done() tells the queue that the processing
53 have been processed (meaning that a task_done() call was received
64 raise ValueError('task_done() called too many times')
74 queue. The count goes down whenever a consumer thread calls task_done()
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A DQueue.py45 def task_done(self): member in class:Queue
49 a subsequent call to task_done() tells the queue that the processing
53 have been processed (meaning that a task_done() call was received
64 raise ValueError('task_done() called too many times')
74 queue. The count goes down whenever a consumer thread calls task_done()
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
H A Dqueues.py288 # A queue type which also supports join() and task_done() methods
290 # Note that if you do not call task_done() for each finished task then
326 def task_done(self): member in class:JoinableQueue
330 raise ValueError('task_done() called too many times')
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
H A Dqueues.py288 # A queue type which also supports join() and task_done() methods
290 # Note that if you do not call task_done() for each finished task then
326 def task_done(self): member in class:JoinableQueue
330 raise ValueError('task_done() called too many times')

Completed in 208 milliseconds