Skip to content

webknossos.utils

#   def time_start(identifier: str) -> None:
#   def time_stop(identifier: str) -> None:
#   def get_executor_for_args( args: Union[argparse.Namespace, NoneType] ) -> Union[cluster_tools.schedulers.cluster_executor.ClusterExecutor, cluster_tools.WrappedProcessPoolExecutor]:
#   def named_partial( func: Callable[..., Any], *args: Any, **kwargs: Any ) -> Callable[..., Any]:
#   def wait_and_ensure_success(futures: List[concurrent.futures._base.Future]) -> None:

Waits for all futures to complete and raises an exception as soon as a future resolves with an error.

#   def snake_to_camel_case(snake_case_name: str) -> str:
#   def time_since_epoch_in_ms() -> int:
Back to top