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

Class StartExecFailed

tensorboard/manager.py:379–392  ·  view source on GitHub ↗

Possible return value of the `start` function. Indicates that a call to `start` failed to invoke the subprocess. Attributes: os_error: `OSError` due to `Popen` invocation. explicit_binary: If the TensorBoard executable was chosen via the `TENSORBOARD_BINARY` environment

Source from the content-addressed store, hash-verified

377
378@dataclasses.dataclass(frozen=True)
379class StartExecFailed:
380 """Possible return value of the `start` function.
381
382 Indicates that a call to `start` failed to invoke the subprocess.
383
384 Attributes:
385 os_error: `OSError` due to `Popen` invocation.
386 explicit_binary: If the TensorBoard executable was chosen via the
387 `TENSORBOARD_BINARY` environment variable, then this field contains
388 the path to that binary; otherwise `None`.
389 """
390
391 os_error: OSError
392 explicit_binary: Optional[str]
393
394
395@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…