(name, value)
| 178 | elif isinstance(start_result, manager.StartFailed): |
| 179 | |
| 180 | def format_stream(name, value): |
| 181 | if value == "": |
| 182 | return "" |
| 183 | elif value is None: |
| 184 | return "\n<could not read %s>" % name |
| 185 | else: |
| 186 | return "\nContents of %s:\n%s" % (name, value.strip()) |
| 187 | |
| 188 | message = ( |
| 189 | "ERROR: Failed to launch TensorBoard (exited with %d).%s%s" |
no outgoing calls
no test coverage detected
searching dependent graphs…