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
| 377 | |
| 378 | @dataclasses.dataclass(frozen=True) |
| 379 | class 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) |
no outgoing calls
no test coverage detected
searching dependent graphs…