(self, only_once)
| 2747 | self._step.num_concurrent_instances = num_concurrent_instances |
| 2748 | |
| 2749 | def SetOnlyOnce(self, only_once): |
| 2750 | self._assert_can_mutate() |
| 2751 | self._step.only_once = only_once |
| 2752 | |
| 2753 | def SetShouldStopBlob(self, should_stop_blob): |
| 2754 | assert isinstance(should_stop_blob, BlobReference), ( |
no test coverage detected