Home | History | Annotate | Download | only in common_lib

Lines Matching refs:abort

20     """Special BarrierError raised when an explicit abort is requested."""
134 Any client can also request an abort of the job by setting
135 abort=True in the rendezvous arguments.
297 abort = self._abort
313 logging.warning("Client %s requested abort", name)
314 abort = True
321 if abort:
339 if abort:
340 raise BarrierAbortError("Client requested abort")
345 # not released them then they know to abort.
481 raise error.BarrierError("master abort -- barrier timeout")
483 raise error.BarrierError("master abort -- client lost")
485 raise error.BarrierError("master abort -- incorrect tag")
487 raise error.BarrierError("master abort -- duplicate client")
489 raise BarrierAbortError("Client requested abort")
495 # if called with abort=True, this will raise an exception
501 self._abort = dargs.get('abort', False)
524 # if called with abort=True, this will raise an exception
530 self._abort = dargs.get('abort', False)