Home
last modified time | relevance | path

Searched refs:_ArgumentGroup (Results 1 – 25 of 67) sorted by relevance

123

/dports/misc/py-toil/toil-5.4.0/src/toil/batchSystems/
H A Doptions.py15 from argparse import ArgumentParser, _ArgumentGroup
46 def add_parasol_options(parser: Union[ArgumentParser, _ArgumentGroup]) -> None: argument
55 def add_single_machine_options(parser: Union[ArgumentParser, _ArgumentGroup]) -> None: argument
79 def add_mesos_options(parser: Union[ArgumentParser, _ArgumentGroup]) -> None: argument
84 def add_kubernetes_options(parser: Union[ArgumentParser, _ArgumentGroup]) -> None: argument
89 def add_slurm_options(parser: Union[ArgumentParser, _ArgumentGroup]): argument
103 def add_all_batchsystem_options(parser: Union[ArgumentParser, _ArgumentGroup]) -> None: argument
/dports/devel/py-cliff/cliff-3.3.0/cliff/
H A D_argparse.py27 group = _ArgumentGroup(self, *args, **kwargs)
88 class _ArgumentGroup(_ArgumentContainerMixIn, argparse._ArgumentGroup): class
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/@python2/
H A Dargparse.pyi56 _action_groups: List[_ArgumentGroup]
84 def add_argument_group(self, *args: Any, **kwargs: Any) -> _ArgumentGroup: ...
109 _positionals: _ArgumentGroup
110 _optionals: _ArgumentGroup
111 _subparsers: Optional[_ArgumentGroup]
201 …self, usage: Optional[Text], actions: Iterable[Action], groups: Iterable[_ArgumentGroup], prefix: …
208 …self, usage: Text, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], prefix: Optional[T…
210 …def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_ArgumentGroup]) -> _T…
274 class _ArgumentGroup(_ActionsContainer):
282 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/
H A Dargparse.pyi54 _action_groups: List[_ArgumentGroup]
80 def add_argument_group(self, *args: Any, **kwargs: Any) -> _ArgumentGroup: ...
106 _positionals: _ArgumentGroup
107 _optionals: _ArgumentGroup
108 _subparsers: Optional[_ArgumentGroup]
241 …self, usage: Optional[str], actions: Iterable[Action], groups: Iterable[_ArgumentGroup], prefix: O…
248 …self, usage: str, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], prefix: Optional[st…
250 …def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_ArgumentGroup]) -> st…
335 class _ArgumentGroup(_ActionsContainer):
343 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/stdlib/2and3/
H A Dargparse.pyi41 _action_groups: List[_ArgumentGroup]
67 def add_argument_group(self, *args: Any, **kwargs: Any) -> _ArgumentGroup: ...
92 _positionals: _ArgumentGroup
93 _optionals: _ArgumentGroup
94 _subparsers: Optional[_ArgumentGroup]
213 …def add_usage(self, usage: Text, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], pref…
218 …def _format_usage(self, usage: Text, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], …
219 …def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_ArgumentGroup]) -> _T…
288 class _ArgumentGroup(_ActionsContainer):
296 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/stdlib/2and3/
H A Dargparse.pyi42 _action_groups: List[_ArgumentGroup]
68 def add_argument_group(self, *args: Any, **kwargs: Any) -> _ArgumentGroup: ...
96 _positionals: _ArgumentGroup
97 _optionals: _ArgumentGroup
98 _subparsers: Optional[_ArgumentGroup]
232 …def add_usage(self, usage: Text, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], pref…
237 …def _format_usage(self, usage: Text, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], …
238 …def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_ArgumentGroup]) -> _T…
324 class _ArgumentGroup(_ActionsContainer):
332 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/
H A Dargparse.pyi60 _action_groups: List[_ArgumentGroup]
88 def add_argument_group(self, *args: Any, **kwargs: Any) -> _ArgumentGroup: ...
116 _positionals: _ArgumentGroup
117 _optionals: _ArgumentGroup
118 _subparsers: Optional[_ArgumentGroup]
266 …self, usage: Optional[Text], actions: Iterable[Action], groups: Iterable[_ArgumentGroup], prefix: …
273 …self, usage: Text, actions: Iterable[Action], groups: Iterable[_ArgumentGroup], prefix: Optional[T…
275 …def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_ArgumentGroup]) -> _T…
365 class _ArgumentGroup(_ActionsContainer):
373 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/py-pdm/pdm-1.11.0/pdm/cli/
H A Doptions.py35 def add_to_group(self, group: argparse._ArgumentGroup) -> None: argument
77 group: argparse._ArgumentGroup
85 def add_to_group(self, group: argparse._ArgumentGroup) -> None: argument
/dports/devel/bpython/bpython-0.22.1/bpython/
H A Dargs.py75 Options = Tuple[str, str, Callable[[argparse._ArgumentGroup], None]]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/polly/utils/
H A Dargparse.py1312 group = _ArgumentGroup(self, *args, **kwargs)
1485 class _ArgumentGroup(_ActionsContainer): class
1493 super_init = super(_ArgumentGroup, self).__init__
1509 action = super(_ArgumentGroup, self)._add_action(action)
1514 super(_ArgumentGroup, self)._remove_action(action)
1518 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/lang/python-legacy/Python-2.7.18/Lib/
H A Dargparse.py1315 group = _ArgumentGroup(self, *args, **kwargs)
1488 class _ArgumentGroup(_ActionsContainer): class
1496 super_init = super(_ArgumentGroup, self).__init__
1513 action = super(_ArgumentGroup, self)._add_action(action)
1518 super(_ArgumentGroup, self)._remove_action(action)
1522 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/lang/python27/Python-2.7.18/Lib/
H A Dargparse.py1315 group = _ArgumentGroup(self, *args, **kwargs)
1488 class _ArgumentGroup(_ActionsContainer): class
1496 super_init = super(_ArgumentGroup, self).__init__
1513 action = super(_ArgumentGroup, self)._add_action(action)
1518 super(_ArgumentGroup, self)._remove_action(action)
1522 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/argparse/
H A D__init__.py1311 group = _ArgumentGroup(self, *args, **kwargs)
1484 class _ArgumentGroup(_ActionsContainer): class
1492 super_init = super(_ArgumentGroup, self).__init__
1508 action = super(_ArgumentGroup, self)._add_action(action)
1513 super(_ArgumentGroup, self)._remove_action(action)
1517 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/www/py-gunicorn/gunicorn-19.9.0/gunicorn/
H A Dargparse_compat.py1311 group = _ArgumentGroup(self, *args, **kwargs)
1484 class _ArgumentGroup(_ActionsContainer): class
1492 super_init = super(_ArgumentGroup, self).__init__
1508 action = super(_ArgumentGroup, self)._add_action(action)
1513 super(_ArgumentGroup, self)._remove_action(action)
1517 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/
H A Dargparse.py1298 group = _ArgumentGroup(self, *args, **kwargs)
1471 class _ArgumentGroup(_ActionsContainer): class
1479 super_init = super(_ArgumentGroup, self).__init__
1496 action = super(_ArgumentGroup, self)._add_action(action)
1501 super(_ArgumentGroup, self)._remove_action(action)
1505 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/polly/utils/
H A Dargparse.py1312 group = _ArgumentGroup(self, *args, **kwargs)
1485 class _ArgumentGroup(_ActionsContainer): class
1493 super_init = super(_ArgumentGroup, self).__init__
1509 action = super(_ArgumentGroup, self)._add_action(action)
1514 super(_ArgumentGroup, self)._remove_action(action)
1518 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/sysutils/autojump/autojump-release-v22.5.3/bin/
H A Dautojump_argparse.py1374 group = _ArgumentGroup(self, *args, **kwargs)
1553 class _ArgumentGroup(_ActionsContainer): class
1561 super_init = super(_ArgumentGroup, self).__init__
1577 action = super(_ArgumentGroup, self)._add_action(action)
1582 super(_ArgumentGroup, self)._remove_action(action)
1586 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/polly/utils/
H A Dargparse.py1312 group = _ArgumentGroup(self, *args, **kwargs)
1485 class _ArgumentGroup(_ActionsContainer): class
1493 super_init = super(_ArgumentGroup, self).__init__
1509 action = super(_ArgumentGroup, self)._add_action(action)
1514 super(_ArgumentGroup, self)._remove_action(action)
1518 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/net-mgmt/py-pdagent/pdagent-1.7.2/pdagent/thirdparty/
H A Dargparse.py1364 group = _ArgumentGroup(self, *args, **kwargs)
1537 class _ArgumentGroup(_ActionsContainer): class
1545 super_init = super(_ArgumentGroup, self).__init__
1561 action = super(_ArgumentGroup, self)._add_action(action)
1566 super(_ArgumentGroup, self)._remove_action(action)
1570 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/polly/utils/
H A Dargparse.py1312 group = _ArgumentGroup(self, *args, **kwargs)
1485 class _ArgumentGroup(_ActionsContainer): class
1493 super_init = super(_ArgumentGroup, self).__init__
1509 action = super(_ArgumentGroup, self)._add_action(action)
1514 super(_ArgumentGroup, self)._remove_action(action)
1518 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/polly/utils/
H A Dargparse.py1312 group = _ArgumentGroup(self, *args, **kwargs)
1485 class _ArgumentGroup(_ActionsContainer): class
1493 super_init = super(_ArgumentGroup, self).__init__
1509 action = super(_ArgumentGroup, self)._add_action(action)
1514 super(_ArgumentGroup, self)._remove_action(action)
1518 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/science/dalton/dalton-66052b3af5ea7225e31178bf9a8b031913c72190/cmake/
H A Dargparse.py1312 group = _ArgumentGroup(self, *args, **kwargs)
1485 class _ArgumentGroup(_ActionsContainer): class
1493 super_init = super(_ArgumentGroup, self).__init__
1509 action = super(_ArgumentGroup, self)._add_action(action)
1514 super(_ArgumentGroup, self)._remove_action(action)
1518 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/math/vtk6/VTK-6.2.0/Web/JavaScript/Minimizer/
H A D_argparse.py1298 group = _ArgumentGroup(self, *args, **kwargs)
1471 class _ArgumentGroup(_ActionsContainer): class
1479 super_init = super(_ArgumentGroup, self).__init__
1496 action = super(_ArgumentGroup, self)._add_action(action)
1501 super(_ArgumentGroup, self)._remove_action(action)
1505 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/math/vtk8/VTK-8.2.0/Wrapping/Python/vtkmodules/util/
H A D_argparse.py1298 group = _ArgumentGroup(self, *args, **kwargs)
1471 class _ArgumentGroup(_ActionsContainer): class
1479 super_init = super(_ArgumentGroup, self).__init__
1496 action = super(_ArgumentGroup, self)._add_action(action)
1501 super(_ArgumentGroup, self)._remove_action(action)
1505 class _MutuallyExclusiveGroup(_ArgumentGroup):
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dargparse.py1298 group = _ArgumentGroup(self, *args, **kwargs)
1471 class _ArgumentGroup(_ActionsContainer): class
1479 super_init = super(_ArgumentGroup, self).__init__
1496 action = super(_ArgumentGroup, self)._add_action(action)
1501 super(_ArgumentGroup, self)._remove_action(action)
1505 class _MutuallyExclusiveGroup(_ArgumentGroup):

123