用法:
distributed.comm.parse_address(addr: str, strict: bool = False) → tuple[str, str]
将地址拆分为其方案和scheme-dependent 位置字符串。
>>> parse_address('tcp://127.0.0.1') ('tcp', '127.0.0.1')
如果 strict 设置为 true,则地址必须有一个方案。
相关用法
- Python distributed.comm.resolve_address用法及代码示例
- Python distributed.comm.get_address_host用法及代码示例
- Python distributed.comm.normalize_address用法及代码示例
- Python distributed.protocol.serialize.register_generic用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代码示例
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代码示例
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.fire_and_forget用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
- Python distributed.Client.submit用法及代码示例
- Python distributed.Client.compute用法及代码示例
- Python distributed.SpecCluster.scale用法及代码示例
- Python distributed.get_worker用法及代码示例
- Python distributed.SpecCluster.scale_up用法及代码示例
- Python distributed.Client.nthreads用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.comm.parse_address。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。