Buckets:
MisterAI/LocalAI_Demo_backends / cpu-diffusers.upgrade-tmp /venv /lib /python3.10 /site-packages /jupyter_client /managerabc.py
| """Abstract base class for kernel managers.""" | |
| # Copyright (c) Jupyter Development Team. | |
| # Distributed under the terms of the Modified BSD License. | |
| import abc | |
| from typing import Any | |
| class KernelManagerABC(metaclass=abc.ABCMeta): | |
| """KernelManager ABC. | |
| The docstrings for this class can be found in the base implementation: | |
| `jupyter_client.manager.KernelManager` | |
| """ | |
| def kernel(self) -> Any: | |
| pass | |
| # -------------------------------------------------------------------------- | |
| # Kernel management | |
| # -------------------------------------------------------------------------- | |
| def start_kernel(self, **kw: Any) -> None: | |
| """Start the kernel.""" | |
| pass | |
| def shutdown_kernel(self, now: bool = False, restart: bool = False) -> None: | |
| """Shut down the kernel.""" | |
| pass | |
| def restart_kernel(self, now: bool = False, **kw: Any) -> None: | |
| """Restart the kernel.""" | |
| pass | |
| def has_kernel(self) -> bool: | |
| pass | |
| def interrupt_kernel(self) -> None: | |
| """Interrupt the kernel.""" | |
| pass | |
| def signal_kernel(self, signum: int) -> None: | |
| """Send a signal to the kernel.""" | |
| pass | |
| def is_alive(self) -> bool: | |
| """Test whether the kernel is alive.""" | |
| pass | |
Xet Storage Details
- Size:
- 1.49 kB
- Xet hash:
- e5132939893fbacc0c2040927c20bd0d9bc1db8c03ca35afa8e4877a5c22a9df
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.