Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/hpcgap/lib/distributed/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 1 kB image not shown  

Quelle  make_hosts_file.py   Sprache: unbekannt

 
# mypy: allow-untyped-defs

import argparse
import os

from ..localpaths import repo_root

from ..serve.serve import build_config, make_hosts_file


def create_parser():
    parser = argparse.ArgumentParser()
    parser.add_argument("address", default="127.0.0.1", nargs="?",
                        help="Address that hosts should point at")
    return parser


def run(**kwargs):
    config_builder = build_config(os.path.join(repo_root, "config.json"),
                                  ssl={"type""none"})

    with config_builder as config:
        print(make_hosts_file(config, kwargs["address"]))

Messung V0.5 in Prozent
C=96 H=100 G=97

[zur Elbe Produktseite wechseln0.42QuellennavigatorsAnalyse erneut starten2026-04-28]