Home
last modified time | relevance | path

Searched refs:options_dict (Results 51 – 75 of 256) sorted by relevance

1234567891011

/dports/science/py-phonopy/phonopy-2.11.0/phonopy/interface/
H A Dhiphive_interface.py139 options_dict = {}
141 options_dict = _decode_options(options)
145 if 'cutoff' in options_dict:
146 cutoff = options_dict['cutoff']
/dports/science/phonopy/phonopy-2.11.0/phonopy/interface/
H A Dhiphive_interface.py139 options_dict = {}
141 options_dict = _decode_options(options)
145 if 'cutoff' in options_dict:
146 cutoff = options_dict['cutoff']
/dports/science/gramps/gramps-5.1.4/gramps/plugins/tool/
H A Dpopulatesources.py83 num_sources = self.options.handler.options_dict['sources']
84 num_citations = self.options.handler.options_dict['citations']
167 self.options.handler.options_dict['sources'] = num_sources
168 self.options.handler.options_dict['citations'] = num_citations
181 self.options_dict = {
H A Dremoveunused.py145 self.events_box.set_active(self.options.handler.options_dict['events'])
147 self.options.handler.options_dict['sources'])
149 self.options.handler.options_dict['citations'])
151 self.options.handler.options_dict['places'])
152 self.media_box.set_active(self.options.handler.options_dict['media'])
153 self.repos_box.set_active(self.options.handler.options_dict['repos'])
154 self.notes_box.set_active(self.options.handler.options_dict['notes'])
232 self.options.handler.options_dict.update(
288 if not self.options.handler.options_dict[the_type]:
467 self.options_dict = {
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/payments/core/
H A Dweb_payment_request_unittest.cc97 auto options_dict = std::make_unique<base::DictionaryValue>(); in TEST() local
98 options_dict->SetBoolean("requestPayerPhone", true); in TEST()
99 options_dict->SetBoolean("requestShipping", true); in TEST()
100 options_dict->SetString("shippingType", "delivery"); in TEST()
101 request_dict.Set("options", std::move(options_dict)); in TEST()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/payments/core/
H A Dweb_payment_request_unittest.cc97 auto options_dict = std::make_unique<base::DictionaryValue>(); in TEST() local
98 options_dict->SetBoolean("requestPayerPhone", true); in TEST()
99 options_dict->SetBoolean("requestShipping", true); in TEST()
100 options_dict->SetString("shippingType", "delivery"); in TEST()
101 request_dict.Set("options", std::move(options_dict)); in TEST()
/dports/security/py-maec/python-maec-4.1.0.17/maec/analytics/
H A Ddistance.py195 self.options_dict = {'use_dynamic_features' : True,
536 if self.options_dict['use_dynamic_features']:
539 if self.options_dict['use_static_features']:
545 … if self.options_dict['use_dynamic_features'] and self.options_dict['use_static_features']:
548 … elif self.options_dict['use_dynamic_features'] and not self.options_dict['use_static_features']:
551 … elif not self.options_dict['use_dynamic_features'] and self.options_dict['use_static_features']:
573 if self.options_dict['use_dynamic_features']:
576 if self.options_dict['use_static_features']:
/dports/databases/py-mysql-connector-python/mysql-connector-python-8.0.27/docs/mysqlx/tutorials/
H A Dconnection_routers.rst44 options_dict = {} # empty dict object
46 client = mysqlx.get_client(connection_dict, options_dict)
96 options_dict = {}
98 client = mysqlx.get_client(connection_dict, options_dict)
110 … but with different hostnames to emulate two other servers, and the ``options_dict`` is a dictiona…
128 options_dict = {'pooling':{'max_size': 5, 'queue_timeout': 1000}}
130 client = mysqlx.get_client(connection_dict, options_dict)
193 options_dict = {'pooling':{'max_size': 5, 'queue_timeout': 1000}}
195 client = mysqlx.get_client(connection_dict, options_dict)
H A Dconnection_pooling.rst38 options_dict = {}
40 client = mysqlx.get_client(connection_dict, options_dict)
90 options_dict = {'pooling':{'max_size': 5, 'queue_timeout': 1000}}
92 client = mysqlx.get_client(connection_dict, options_dict)
123 options_dict = {'pooling':{'max_size': 6, 'queue_timeout':5000}}
174 client = mysqlx.get_client(connection_dict, options_dict)
233 ``options_dict`` given to the client instance at the time was created on
234 :func:`mysqlx.get_client(connection_dict, options_dict)`.
/dports/devel/glib20/glib-2.70.4/gio/
H A Dgapplicationcommandline.c232 GVariantDict *options_dict; member
363 if (cmdline->priv->options_dict) in g_application_command_line_finalize()
364 g_variant_dict_unref (cmdline->priv->options_dict); in g_application_command_line_finalize()
511 if (!cmdline->priv->options_dict) in g_application_command_line_get_options_dict()
512 cmdline->priv->options_dict = g_variant_dict_new (cmdline->priv->options); in g_application_command_line_get_options_dict()
514 return cmdline->priv->options_dict; in g_application_command_line_get_options_dict()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp37 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
52 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp37 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
52 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp37 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
52 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp37 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
52 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp37 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
52 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp37 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
52 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
H A DBreakpointResolverFileRegex.cpp30 const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
35 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
44 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
54 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp39 Breakpoint *bkpt, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
46 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
54 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
56 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()

1234567891011