MCPcopy Create free account
hub / github.com/tensorflow/tensorboard / _make_server

Method _make_server

tensorboard/program.py:466–476  ·  view source on GitHub ↗

Constructs the TensorBoard WSGI app and instantiates the server.

(self)

Source from the content-addressed store, hash-verified

464 return (ingester.data_provider, deprecated_multiplexer)
465
466 def _make_server(self):
467 """Constructs the TensorBoard WSGI app and instantiates the server."""
468 (data_provider, deprecated_multiplexer) = self._make_data_provider()
469 app = application.TensorBoardWSGIApp(
470 self.flags,
471 self.plugin_loaders,
472 data_provider,
473 self.assets_zip_provider,
474 deprecated_multiplexer,
475 )
476 return self.server_class(app, self.flags)
477
478
479def _should_use_data_server(flags):

Callers 2

_run_serve_subcommandMethod · 0.95
launchMethod · 0.95

Calls 1

_make_data_providerMethod · 0.95

Tested by

no test coverage detected