(self, **kwargs)
| 215 | self.end_time = None |
| 216 | |
| 217 | def _plot(self, **kwargs): |
| 218 | from dask.diagnostics.profile_visualize import plot_resources |
| 219 | |
| 220 | return plot_resources(self.results, self.start_time, self.end_time, **kwargs) |
| 221 | |
| 222 | def visualize(self, **kwargs): |
| 223 | """Visualize the profiling run in a bokeh plot. |
nothing calls this directly
no test coverage detected