Home
last modified time | relevance | path

Searched refs:option_dict (Results 1 – 25 of 115) sorted by relevance

12345

/dports/devel/py-pbr/pbr-5.5.0/pbr/
H A Dbuilddoc.py90 if 'source_dir' in option_dict:
186 option_dict = self.distribution.get_option_dict('pbr')
205 git.write_git_changelog(option_dict=option_dict)
206 git.generate_authors(option_dict=option_dict)
207 tree_index = options.get_boolean_option(option_dict,
210 auto_index = options.get_boolean_option(option_dict,
220 set(option_dict.get(
273 self.builders = option_dict['builder'][1]
285 option_dict = self.distribution.get_option_dict('pbr')
286 if opt in option_dict:
[all …]
H A Doptions.py50 def get_boolean_option(option_dict, option_name, env_name): argument
51 return ((option_name in option_dict and
52 option_dict[option_name][1].lower() in TRUE_VALUES) or
H A Dgit.py264 option_dict=None, changelog=None): argument
267 if not option_dict:
268 option_dict = {}
269 should_skip = options.get_boolean_option(option_dict, 'skip_changelog',
295 def generate_authors(git_dir=None, dest_dir='.', option_dict=dict()): argument
297 should_skip = options.get_boolean_option(option_dict, 'skip_authors',
H A Dpackaging.py535 option_dict = self.distribution.get_option_dict('pbr')
541 should_skip = options.get_boolean_option(option_dict, 'skip_git_sdist',
585 option_dict = distribution.get_option_dict('pbr')
589 git.write_git_changelog(option_dict=option_dict, changelog=changelog)
590 git.generate_authors(option_dict=option_dict)
607 option_dict = self.distribution.get_option_dict('pbr')
608 should_skip = options.get_boolean_option(option_dict, 'skip_reno',
/dports/textproc/py-elasticsearch-curator/curator-5.8.4/curator/cli_singletons/
H A Dobject_class.py57 self.check_options(option_dict)
59 self.options = option_dict
67 'name': option_dict['name'],
85 self.action_args = (option_dict['name'], option_dict['conditions'])
93 def prune_excluded(self, option_dict): argument
95 for k in list(option_dict.keys()):
97 del option_dict[k]
98 return option_dict
100 def check_options(self, option_dict): argument
107 option_dict['repository'] = self.repository
[all …]
H A Dutils.py128 def prune_excluded(option_dict): argument
130 for k in list(option_dict.keys()):
132 del option_dict[k]
133 return option_dict
135 def option_schema_check(action, option_dict): argument
138 prune_nones(option_dict),
/dports/textproc/py-reno/reno-2.9.2/reno/
H A Dsetup_command.py48 option_dict = distribution.get_option_dict(COMMAND_NAME)
50 if option_dict.get('repo_root') is not None:
51 repo_root = option_dict.get('repo_root')[1]
55 if option_dict.get('rel_notes_dir') is not None:
56 rel_notes_dir = option_dict.get('rel_notes_dir')[1]
60 if option_dict.get('output_file') is not None:
61 output_file = option_dict.get('output_file')[1]
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/analysis/chemenv/utils/
H A Dchemenv_config.py118 for option, option_dict in strategy_class.STRATEGY_OPTIONS.items():
122 "(<ENTER> for default = {})\n".format(option, str(option_dict["default"]))
125 print(" {}".format(option_dict["type"].allowed_values))
128 … self.package_options["default_strategy"]["strategy_options"][option] = option_dict["type"](
133 … self.package_options["default_strategy"]["strategy_options"][option] = option_dict["type"](test)
148 for option, option_dict in strategy_class.STRATEGY_OPTIONS.items():
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/docs/doxygen/scripts/
H A Dmake_bindings.py15 option_dict = { variable
25 for opt in option_dict:
26 default = option_dict[opt][0]
31 … parser.add_option("--" + opt, default=default, action=action, dest=opt, help=option_dict[opt][1])
H A Ddoxymlparser.py202 option_dict = { variable
209 for opt in option_dict:
210 default = option_dict[opt][0]
215 … parser.add_option("--" + opt, default=default, action=action, dest=opt, help=option_dict[opt][1])
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/docs/doxygen/scripts/
H A Dmake_bindings.py15 option_dict = { variable
25 for opt in option_dict:
26 default = option_dict[opt][0]
31 … parser.add_option("--" + opt, default=default, action=action, dest=opt, help=option_dict[opt][1])
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/docs/doxygen/scripts/
H A Dmake_bindings.py15 option_dict = { variable
25 for opt in option_dict:
26 default = option_dict[opt][0]
31 … parser.add_option("--" + opt, default=default, action=action, dest=opt, help=option_dict[opt][1])
/dports/print/lilypond-devel/lilypond-2.23.5/python/
H A Dbook_texinfo.py349 if book_snippets.INLINE not in snippet.option_dict:
366 rep1['alt'] = snippet.option_dict[book_snippets.ALT]
383 if book_snippets.DOCTITLE in snippet.option_dict:
394 if book_snippets.TEXIDOC in snippet.option_dict:
405 if book_snippets.INLINE not in snippet.option_dict:
410 if book_snippets.VERBATIM in snippet.option_dict:
414 if book_snippets.QUOTE in snippet.option_dict:
418 if book_snippets.INLINE not in snippet.option_dict:
H A Dbook_html.py148 rep1['alt'] = snippet.option_dict[book_snippets.ALT]
159 if book_snippets.VERBATIM in snippet.option_dict:
164 if book_snippets.INLINE not in snippet.option_dict:
168 if book_snippets.QUOTE in snippet.option_dict:
H A Dbook_snippets.py319 self.option_dict = {}
394 if not NOGETTEXT in self.option_dict:
427 if no_options[key] in self.option_dict:
499 self.option_dict = {INDENT: '0\\mm'}
501 self.option_dict.update(self.snippet_option_dict)
505 lst = [x_y for x_y in iter(self.option_dict.items())
579 option_names = sorted(self.option_dict.keys())
581 value = self.option_dict[key]
645 if FRAGMENT in self.option_dict:
934 if not NOGETTEXT in self.option_dict:
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/sparse/linalg/dsolve/
H A D_superlumodule.c85 volatile PyObject *option_dict = NULL; in Py_gssv() local
99 &rowptr, &Py_B, &csc, &option_dict)) { in Py_gssv()
117 (PyObject*)option_dict, NULL, NULL)) { in Py_gssv()
211 PyObject *option_dict = NULL; in Py_gstrf() local
227 &option_dict, in Py_gstrf()
251 result = newSuperLUObject(&A, option_dict, type, ilu, py_csc_construct_func); in Py_gstrf()
/dports/devel/py-pytest-xdist/pytest-xdist-1.32.0/src/xdist/
H A Dremote.py217 def remote_initconfig(option_dict, args): argument
218 option_dict["plugins"].append("no:terminal")
219 return Config.fromdictargs(option_dict, args)
234 workerinput, args, option_dict, change_sys_path = channel.receive() variable
250 config = remote_initconfig(option_dict, args)
253 setup_config(config, option_dict.get("basetemp"))
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/glean_parser/glean_parser/
H A D__main__.py56 option_dict = {}
59 option_dict[key] = val
66 option_dict,
/dports/print/lilypond/lilypond-2.22.1/python/
H A Dbook_html.py146 if book_snippets.VERBATIM in snippet.option_dict:
149 if book_snippets.QUOTE in snippet.option_dict:
157 rep1['alt'] = snippet.option_dict[book_snippets.ALT]
H A Dbook_texinfo.py344 rep1['alt'] = snippet.option_dict[book_snippets.ALT]
361 if book_snippets.DOCTITLE in snippet.option_dict:
371 if book_snippets.TEXIDOC in snippet.option_dict:
384 if book_snippets.VERBATIM in snippet.option_dict:
388 if book_snippets.QUOTE in snippet.option_dict:
H A Dbook_snippets.py320 self.option_dict = {}
395 if not NOGETTEXT in self.option_dict:
428 if no_options[key] in self.option_dict:
462 self.option_dict = {INDENT: '0\\mm'}
464 self.option_dict.update(self.snippet_option_dict)
468 lst = [x_y for x_y in iter(self.option_dict.items(
541 option_names = sorted(self.option_dict.keys())
543 value = self.option_dict[key]
592 if FRAGMENT in self.option_dict:
880 if not NOGETTEXT in self.option_dict:
[all …]
/dports/science/py-phonopy/phonopy-2.11.0/phonopy/interface/
H A Dhiphive_interface.py199 option_dict = {}
203 option_dict[key] = float(value)
204 return option_dict
/dports/science/phonopy/phonopy-2.11.0/phonopy/interface/
H A Dhiphive_interface.py199 option_dict = {}
203 option_dict[key] = float(value)
204 return option_dict
/dports/graphics/birdfont/birdfont-2.29.5/
H A Dconfigure136 option_dict = vars(options)
144 cflags[target] = cflags[target] + ' ' + option_dict.get('cflags_' + target, "")
148 ldflags[target] = ldflags[target] + ' ' + option_dict.get('ldflags_' + target, "")
152 valacflags[target] = valacflags[target] + ' ' + option_dict.get('valac_flags_' + target, "")
/dports/textproc/libxmlbird/libxmlbird-1.2.12/
H A Dconfigure90 option_dict = vars(options)
98 cflags[target] = cflags[target] + ' ' + option_dict.get('cflags_' + target, "")
102 ldflags[target] = ldflags[target] + ' ' + option_dict.get('ldflags_' + target, "")
106 valacflags[target] = valacflags[target] + ' ' + option_dict.get('valac_flags_' + target, "")

12345