Possible return value of the `start` function. Indicates that a call to `start` launched a TensorBoard process, but that process neither exited nor wrote its info file within the allowed timeout period. The process may still be running under the included PID. Attributes:
| 394 | |
| 395 | @dataclasses.dataclass(frozen=True) |
| 396 | class StartTimedOut: |
| 397 | """Possible return value of the `start` function. |
| 398 | |
| 399 | Indicates that a call to `start` launched a TensorBoard process, but |
| 400 | that process neither exited nor wrote its info file within the allowed |
| 401 | timeout period. The process may still be running under the included |
| 402 | PID. |
| 403 | |
| 404 | Attributes: |
| 405 | pid: ID of the process running TensorBoard. |
| 406 | """ |
| 407 | |
| 408 | pid: int |
| 409 | |
| 410 | |
| 411 | def _subprocess_environ(): |
no outgoing calls
no test coverage detected
searching dependent graphs…