MCPcopy Index your code
hub / github.com/tensorflow/tensorboard / StartFailed

Class StartFailed

tensorboard/manager.py:358–375  ·  view source on GitHub ↗

Possible return value of the `start` function. Indicates that a call to `start` tried to launch a new TensorBoard instance, but the subprocess exited with the given exit code and output streams. (If the contents of the output streams are no longer available---e.g., because the user

Source from the content-addressed store, hash-verified

356
357@dataclasses.dataclass(frozen=True)
358class StartFailed:
359 """Possible return value of the `start` function.
360
361 Indicates that a call to `start` tried to launch a new TensorBoard
362 instance, but the subprocess exited with the given exit code and
363 output streams. (If the contents of the output streams are no longer
364 available---e.g., because the user has emptied /tmp/---then the
365 corresponding values will be `None`.)
366
367 Attributes:
368 exit_code: As `Popen.returncode` (negative for signal).
369 stdout: Error message to stdout if the stream could not be read.
370 stderr: Error message to stderr if the stream could not be read.
371 """
372
373 exit_code: int
374 stdout: Optional[str]
375 stderr: Optional[str]
376
377
378@dataclasses.dataclass(frozen=True)

Callers 1

startFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…