config_schema
config_schema
¤
Classes:
Name | Description |
---|---|
MvfstConfig |
|
MvfstConfig
dataclass
¤
MvfstConfig(
name: str = "mvfst",
type: ImplementationType = iut,
shadow_compatible: bool = False,
gperf_compatible: bool = False,
version: MvfstVersion = lambda: load_versions_from_files()(),
)
Bases: ImplementationConfig
Methods:
Name | Description |
---|---|
load_versions_from_files |
Load version configurations dynamically from YAML files. |
load_versions_from_files
staticmethod
¤
load_versions_from_files(
version_configs_dir: str = f"{Path(dirname(__file__))}/version_configs/",
) -> MvfstVersion
Load version configurations dynamically from YAML files.
Source code in .venv/lib/python3.10/site-packages/panther/plugins/services/iut/quic/mvfst/config_schema.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|