Lines Matching refs:completed_queue
21 def Helper(stage, done_dict, helper_queue, completed_queue, result_queue):
38 completed_queue: A queue of tasks that have been built/tested. The results
65 # the completed_queue, it will be put in the waiting list. If the result
76 # Check and get completed tasks from completed_queue.
77 GetResultFromCompletedQueue(stage, completed_queue, done_dict, waiting_list,
82 GetResultFromCompletedQueue(stage, completed_queue, done_dict, waiting_list,
86 def GetResultFromCompletedQueue(stage, completed_queue, done_dict, waiting_list,
93 completed_queue: A queue of tasks that have been performed. The results of
107 the same flags as the currently received results from the completed_queue.
110 if not completed_queue.empty():
111 (identifier, result) = completed_queue.get()