Buckets:
MisterAI/LocalAI_Demo_backends / cpu-diffusers.upgrade-tmp /venv /lib /python3.10 /site-packages /jupyter_client /channelsabc.py
| """Abstract base classes for kernel client channels""" | |
| # Copyright (c) Jupyter Development Team. | |
| # Distributed under the terms of the Modified BSD License. | |
| import abc | |
| class ChannelABC(metaclass=abc.ABCMeta): | |
| """A base class for all channel ABCs.""" | |
| def start(self) -> None: | |
| """Start the channel.""" | |
| pass | |
| def stop(self) -> None: | |
| """Stop the channel.""" | |
| pass | |
| def is_alive(self) -> bool: | |
| """Test whether the channel is alive.""" | |
| pass | |
| class HBChannelABC(ChannelABC): | |
| """HBChannel ABC. | |
| The docstrings for this class can be found in the base implementation: | |
| `jupyter_client.channels.HBChannel` | |
| """ | |
| def time_to_dead(self) -> float: | |
| pass | |
| def pause(self) -> None: | |
| """Pause the heartbeat channel.""" | |
| pass | |
| def unpause(self) -> None: | |
| """Unpause the heartbeat channel.""" | |
| pass | |
| def is_beating(self) -> bool: | |
| """Test whether the channel is beating.""" | |
| pass | |
Xet Storage Details
- Size:
- 1.18 kB
- Xet hash:
- 27ab29ad5dc7b404c687628a44270f0279ba2dbb4051b49f853907daa308a141
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.