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