Get benchmark instance by name.
(self, name: str)
| 384 | raise |
| 385 | |
| 386 | async def get(self, name: str) -> Optional[Benchmark]: |
| 387 | """Get benchmark instance by name.""" |
| 388 | config = self._benchmark_configs.get(name) |
| 389 | return config.instance if config else None |
| 390 | |
| 391 | async def restore(self, name: str, version: str, auto_initialize: bool = True) -> Optional[BenchmarkConfig]: |
| 392 | """Restore a specific version of a benchmark.""" |
no outgoing calls
no test coverage detected