Home | History | Annotate | Download | only in server

Lines Matching refs:Status

207     """Grabs the current lab status and message.
217 logging.debug('Error occurred when grabbing the lab status: %s.',
229 """Decode lab status, and report exceptions as needed.
231 Take a deserialized JSON object from the lab status page, and
232 interpret it to determine the actual lab status. Raise
235 @param build: build name that we want to check the status of.
238 status and build should be blocked.
247 # Lab is 'status' [regex ...] (comment)
271 """Check if the lab status allows us to schedule for a build.
279 status and build should be blocked.
286 # Download the lab status from its home on the web.
291 # We go ahead and say the lab is open if we can't get the status.
292 logging.warning('Could not get a status from %s', status_url)
339 @return: A dictionary of test status keyed by test name, e.g.,
351 test_views[view['test_name']] = view['status']
509 """Get the status of a special task.
511 Emulate a host queue entry status for a special task
519 @return The status of a special task.
523 return host_queue_entry_states.Status.COMPLETED
524 return host_queue_entry_states.Status.FAILED
526 return host_queue_entry_states.Status.RUNNING
527 return host_queue_entry_states.Status.QUEUED