Home
last modified time | relevance | path

Searched refs:named_args (Results 1 – 25 of 1208) sorted by relevance

12345678910>>...49

/dports/www/p5-CGI-Application-Dispatch/CGI-Application-Dispatch-3.12/lib/CGI/Application/Dispatch/
H A DPSGI.pm202 my $named_args;
216 if(exists($named_args->{PARAMS}) || exists($named_args->{TMPL_PATH})) {
230 if($$named_args{'*'}) {
231 $$named_args{$$named_args{'*'}} = $$named_args{'dispatch_url_remainder'};
232 delete $$named_args{'*'};
245 @{$local_args_to_new->{PARAMS}}{keys %$named_args} = values %$named_args;
248 defined $named_args->{auto_rest} ? $named_args->{auto_rest} : $args{auto_rest};
251 defined $named_args->{auto_rest_lc}
252 ? $named_args->{auto_rest_lc}
434 my %named_args = %{$table->[++$i]};
[all …]
H A DRegexp.pm99 my %named_args = %{$table->[++$i]};
100 my $names = delete($named_args{names});
102 @named_args{@$names} = @values if(ref($names) eq 'ARRAY');
104 return \%named_args;
/dports/www/p5-CGI-Application-Dispatch/CGI-Application-Dispatch-3.12/lib/CGI/Application/
H A DDispatch.pm362 my $named_args;
378 if(exists($named_args->{PARAMS}) || exists($named_args->{TMPL_PATH})) {
388 if($$named_args{'*'}) {
389 $$named_args{$$named_args{'*'}} = $$named_args{'dispatch_url_remainder'};
390 delete $$named_args{'*'};
403 @{$local_args_to_new->{PARAMS}}{keys %$named_args} = values %$named_args;
406 defined $named_args->{auto_rest} ? $named_args->{auto_rest} : $args{auto_rest};
409 defined $named_args->{auto_rest_lc}
410 ? $named_args->{auto_rest_lc}
685 my %named_args = %{$table->[++$i]};
[all …]
/dports/devel/py-pyusb/pyusb-1.0.2/usb/
H A D_debug.py42 def _trace_function_call(logger, fname, *args, **named_args): argument
47 ', '.join((name + '=' + str(val) for name, val in named_args.items())) + ')'
55 def do_trace(*args, **named_args): argument
59 _trace_function_call(logger, fn, *args[1:], **named_args)
60 return f(*args, **named_args)
70 def do_trace(*args, **named_args): argument
73 _trace_function_call(logger, f.__name__, *args, **named_args)
74 return f(*args, **named_args)
/dports/www/habari/habari-0.8/system/classes/
H A Drewriterule.php73 $named_args = $this->named_args; // Direct call shows a PHP notice
79 foreach ( $named_args as $keys ) {
108 $named_args = $this->named_args; // Direct call prints a PHP notice
109 …$named_args_combined = array_flip( array_merge( $named_args['required'], $named_args['optional'] )…
117 foreach ( $named_args as $keys ) {
157 $named_args = $this->named_args; // Direct call prints a PHP notice
158 …$named_args_combined = array_flip( array_merge( $named_args['required'], $named_args['optional'] )…
/dports/science/py-ruffus/ruffus-2.8.3/ruffus/
H A Dtask.py773 cmd = cmd.format(**named_args)
795 named_args["input"] = input_args
796 named_args["output"] = output_args
797 callback(**named_args)
806 def get_name_from_args(named_args): argument
807 if "name" in named_args:
808 name = named_args["name"]
809 del named_args["name"]
1118 if "extras" in named_args:
1361 if "pipeline" not in named_args:
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/
H A DCustomAttributeDataMirror.cs115 var named_args = new object [attr.named_args.Length]; in Create()
116 for (int j = 0; j < named_args.Length; ++j) { in Create()
117 CattrNamedArgInfo arg = attr.named_args [j]; in Create()
123 while (named_args [j] == null && t != null) { in Create()
127 named_args [j] = new CustomAttributeNamedArgumentMirror (prop, null, val); in Create()
132 named_args [j] = new CustomAttributeNamedArgumentMirror (null, field, val); in Create()
137 if (named_args [j] == null) in Create()
140 res [i] = new CustomAttributeDataMirror (ctor, ctor_args, named_args); in Create()
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/build/include/nuitka/
H A Dcalling.h22 PyObject *named_args) { in CALL_FUNCTION() argument
29 assert(named_args == NULL || Py_REFCNT(named_args) > 0); in CALL_FUNCTION()
43 PyObject *result = (*call_slot)(function_object, positional_args, named_args); in CALL_FUNCTION()
78 …USED static PyObject *CALL_FUNCTION_WITH_KEYARGS(PyObject *function_object, PyObject *named_args) { in CALL_FUNCTION_WITH_KEYARGS() argument
79 return CALL_FUNCTION(function_object, const_tuple_empty, named_args); in CALL_FUNCTION_WITH_KEYARGS()
/dports/net-mgmt/crmsh/crmsh-4.3.1/crmsh/
H A Dui_utils.py113 named_args = []
115 named_args += specs.args
117 named_args += specs.args[:-len(specs.defaults)]
118 named_args += [("[%s]" % a) for a in specs.args[-len(specs.defaults):]]
120 named_args += ['[%s ...]' % (specs.varargs)]
122 named_args = named_args[nskip:]
123 return ' '.join(named_args)
/dports/science/py-ruffus/ruffus-2.8.3/ruffus/test/
H A Dtest_file_name_parameters.py198 def get_param_iterator(self, *unnamed_args, **named_args): argument
213 def files_re(self, *unnamed_args, **named_args): argument
416 def get_param_iterator(self, *unnamed_args, **named_args): argument
423 fake_task._decorator_split(*unnamed_args, **named_args)
427 def do_task_split(self, *unnamed_args, **named_args): argument
575 def get_param_iterator(self, *unnamed_args, **named_args): argument
586 def do_task_merge(self, *unnamed_args, **named_args): argument
751 def do_task_transform(self, *unnamed_args, **named_args): argument
1043 def do_task_collate(self, *unnamed_args, **named_args): argument
1345 def files(self, *unnamed_args, **named_args): argument
[all …]
/dports/lang/micropython/micropython-1.17/py/
H A Dmakeqstrdefs.py162 named_args = { variable
176 if arg in named_args:
179 named_args[current_tok].append(arg)
181 if not named_args["pp"] or len(named_args["output"]) != 1:
182 print("usage: %s %s ..." % (sys.argv[0], " ... ".join(named_args)))
185 for k, v in named_args.items():
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/database/postgresql/
H A Dpostgresql_query.py241 named_args=dict(type='dict'),
255 named_args = module.params["named_args"]
262 if positional_args and named_args:
271 elif named_args:
272 named_args = convert_elements_to_pg_arrays(named_args)
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/src/ascent/runtimes/expressions/
H A Dascent_expressions_ast.hpp147 ASTNamedExpressionList *named_args; member in ASTArguments
148 ASTArguments(ASTExpressionList *pos_args, ASTNamedExpressionList *named_args) in ASTArguments() argument
149 : pos_args(pos_args), named_args(named_args) in ASTArguments()
157 if(named_args != nullptr) in ~ASTArguments()
159 const size_t named_size = named_args->size(); in ~ASTArguments()
162 delete(*named_args)[i]; in ~ASTArguments()
164 delete named_args; in ~ASTArguments()
/dports/devel/p5-Class-Delegation/Class-Delegation-1.9.0/demo/
H A Ddemo_change_semantics.pl26 my ($class, %named_args) = @_;
27 bless { base1 => Base1->new(%named_args),
28 base2 => Base2->new(%named_args),
H A Ddemo_pseudo.pl40 my ($class, %named_args) = @_;
41 bless { pseudobase1 => Pseudo::Base1->new(%named_args),
42 pseudobase2 => Pseudo::Base2->new(%named_args),
/dports/databases/ods2sql/ods2sql-aca63183274038487cecb6be17d7f65e92178b8c/cargo-crates/thiserror-impl-1.0.21/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/net-im/fractal/fractal-4.4.0/vendor/thiserror-impl/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/net-mgmt/nfs-exporter/freebsd-nfs-exporter-0.3.0/cargo-crates/thiserror-impl-1.0.20/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/thiserror-impl-1.0.16/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/textproc/sd/sd-0.7.6/cargo-crates/thiserror-impl-1.0.20/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/thiserror-impl-1.0.14/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/devel/gitui/gitui-0.10.1/cargo-crates/thiserror-impl-1.0.20/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/thiserror-impl-1.0.20/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/lang/rust/rustc-1.58.1-src/vendor/thiserror-impl/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/thiserror-impl-1.0.15/src/
H A Dfmt.rs14 let mut named_args = explicit_named_args.parse2(raw_args).unwrap(); in expand_shorthand() localVariable
73 if !named_args.insert(formatvar.clone()) { in expand_shorthand()
96 let mut named_args = Set::new(); in explicit_named_args() localVariable
103 named_args.insert(ident); in explicit_named_args()
109 Ok(named_args) in explicit_named_args()

12345678910>>...49