Home
last modified time | relevance | path

Searched refs:missing_args (Results 1 – 25 of 58) sorted by relevance

123

/dports/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/DBIx-Class-ResultSet-RecursiveUpdate-0.42/t_dbic/lib/DBICTest/Schema/
H A DArtist.pm58 my @missing_args = grep { ! defined $args->{$_} }
60 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
61 if @missing_args;
84 my @missing_args = grep { ! defined $args->{$_} }
86 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
87 if @missing_args;
110 my @missing_args = grep { ! defined $args->{$_} }
112 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
113 if @missing_args;
H A DArtwork_to_Artist.pm29 my @missing_args = grep { ! defined $args->{$_} }
31 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
32 if @missing_args;
53 my @missing_args = grep { ! defined $args->{$_} }
55 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
56 if @missing_args;
H A DArtwork.pm33 my @missing_args = grep { ! defined $args->{$_} }
35 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
36 if @missing_args;
H A DTrack.pm80 my @missing_args = grep { ! defined $args->{$_} }
82 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
83 if @missing_args;
/dports/www/trac-devel/Trac-1.5.3/trac/ticket/tests/
H A Dreport.py234 self.assertEqual([], missing_args)
241 self.assertEqual([], missing_args)
250 self.assertEqual([], missing_args)
257 self.assertEqual(['PARAM', 'MISSING'], missing_args)
292 cols, results, num_items, missing_args, limit_offset = rv
295 self.assertEqual([], missing_args)
492 cols, results, num_items, missing_args, limit_offset = rv
524 cols, results, num_items, missing_args, limit_offset = rv
563 cols, results, num_items, missing_args, limit_offset = rv
608 cols, results, num_items, missing_args, limit_offset = rv
[all …]
/dports/sysutils/ntfy/ntfy-2.7.0-14-g0e922fa/ntfy/
H A D__init__.py73 missing_args = required_args - set(backend_config)
79 if missing_args:
81 'Missing arguments: {}'.format(missing_args))
83 if not any([unknown_args, missing_args]):
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/graphql/mutations/
H A Dbase_mutation.rb34 missing_args = self.class.arguments.values
38 … raise ArgumentError, "Arguments must be provided: #{missing_args.join(", ")}" if missing_args.any?
/dports/www/firefox-legacy/firefox-52.8.0esr/build/compare-mozconfig/
H A Dcompare-mozconfigs.py68 missing_args = mozconfig_lines == [] or nightly_mozconfig_lines == []
69 if missing_args:
145 missing_args = options.branch is None or options.revision is None variable
146 if not options.no_download and missing_args:
/dports/x11-toolkits/p5-Tk/Tk-804.035/demos/demos/widget_lib/
H A DBall.pm53 my @missing_args = grep ! defined $args{$_}, keys %DEFAULTS;
54 @args{@missing_args} = @DEFAULTS{@missing_args};
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/subresource_filter/tools/
H A Dfilter_tool_main.cc134 std::vector<std::string> missing_args; in main() local
137 missing_args.push_back(arg); in main()
140 << base::JoinString(missing_args, ",") << std::endl; in main()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/subresource_filter/tools/
H A Dfilter_tool_main.cc134 std::vector<std::string> missing_args; in main() local
137 missing_args.push_back(arg); in main()
140 << base::JoinString(missing_args, ",") << std::endl; in main()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_typeck/src/structured_errors/
H A Dwrong_number_of_generic_args.rs188 let missing_args = self.num_expected_lifetime_args() - self.num_provided_lifetime_args(); in num_missing_lifetime_args() localVariable
189 assert!(missing_args > 0); in num_missing_lifetime_args()
190 missing_args in num_missing_lifetime_args()
194 let missing_args = self.num_expected_type_or_const_args_including_defaults() in num_missing_type_or_const_args() localVariable
196 assert!(missing_args > 0); in num_missing_type_or_const_args()
197 missing_args in num_missing_type_or_const_args()
/dports/www/firefox-legacy/firefox-52.8.0esr/build/release/
H A Dsanity.py80 missing_args = mozconfig_lines == [] or nightly_mozconfig_lines == []
81 if missing_args:
/dports/devel/py-taskflow/taskflow-4.6.3/taskflow/
H A Datom.py157 missing_args = [arg for arg in req_args if arg not in required]
158 if missing_args:
160 % (atom_name, missing_args))
/dports/sysutils/py-salt/salt-3004.1/salt/utils/
H A Dargs.py451 missing_args = []
465 missing_args.append(arg)
467 if missing_args:
469 args_count = used_args_count + len(missing_args)
/dports/www/trac-devel/Trac-1.5.3/trac/ticket/
H A Dreport.py447 cols, results, num_items, missing_args, limit_offset = res
668 if missing_args:
671 args=", ".join(missing_args)))
683 sql, args, missing_args = self.sql_sub_vars(sql, args)
795 return cols, rows, num_items, missing_args, limit_offset
829 missing_args = []
842 missing_args.append(aname)
876 return sql_io.getvalue(), values, missing_args
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/cherrypy/
H A D_cpdispatch.py133 missing_args = []
137 missing_args.append(key)
141 if missing_args:
156 message = 'Missing parameters: %s' % ','.join(missing_args)
/dports/www/py-cherrypy/CherryPy-17.4.2/cherrypy/
H A D_cpdispatch.py133 missing_args = []
137 missing_args.append(key)
141 if missing_args:
156 message = 'Missing parameters: %s' % ','.join(missing_args)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp168 template<typename=int> int missing_args; // expected-note {{here}} variable
169 template int missing_args; // expected-error {{must specify a template argument list}}

123