Home
last modified time | relevance | path

Searched refs:strict_mode (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/dports/textproc/p5-TOML-Parser/TOML-Parser-0.91/t/001_parser/
H A Dempty_string.t18 for my $strict_mode (0, 1) {
19 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
22 is_deeply $data => $expected, "t/toml/empty_string.toml: strict_mode: $strict_mode";
H A Dcomma_at_last_of_array.t19 for my $strict_mode (0, 1) {
20 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
23 is_deeply $data => $expected, "t/toml/comma_at_last_of_array.toml: strict_mode: $strict_mode";
H A Dempty_array.t18 for my $strict_mode (0, 1) {
19 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
22 is_deeply $data => $expected, "t/toml/empty_array.toml: strict_mode: $strict_mode";
H A Dinteger.t19 for my $strict_mode (0, 1) {
20 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
23 is_deeply $data => $expected, "t/toml/integer.toml: strict_mode: $strict_mode";
H A Dempty_comment.t19 for my $strict_mode (0, 1) {
20 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
23 is_deeply $data => $expected, "t/toml/empty_comment.toml: strict_mode: $strict_mode";
H A Dsingle_quote.t20 for my $strict_mode (0, 1) {
21 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
24 is_deeply $data => $expected, "t/toml/single_quote.toml: strict_mode: $strict_mode";
H A Dstring_zero.t23 for my $strict_mode (0, 1) {
24 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
27 is_deeply $data => $expected, "t/toml/string_zero.toml: strict_mode: $strict_mode";
H A Dfloat.t26 for my $strict_mode (0, 1) {
27 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
30 cmp_deeply $data => $expected, "t/toml/float.toml: strict_mode: $strict_mode";
H A Dexample_fruit.t22 for my $strict_mode (0, 1) {
23 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
26 is_deeply $data => $expected, "t/toml/example_fruit.toml: strict_mode: $strict_mode";
H A Dinline_table.t23 for my $strict_mode (0, 1) {
24 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
27 is_deeply $data => $expected, "t/toml/inline_table.toml: strict_mode: $strict_mode";
H A Dtable.t24 for my $strict_mode (0, 1) {
25 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
28 is_deeply $data => $expected, "t/toml/table.toml: strict_mode: $strict_mode";
H A Dmulti_line_string.t25 for my $strict_mode (0, 1) {
26 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
29 is_deeply $data => $expected, "t/toml/multi_line_string.toml: strict_mode: $strict_mode";
H A Dexample.t29 for my $strict_mode (0, 1) {
30 my $parser = TOML::Parser->new(strict_mode => $strict_mode);
33 is_deeply $data => $expected, "t/toml/example.toml: strict_mode: $strict_mode";
H A Ddot_in_key.t21 is_deeply $data => $expected, 't/toml/dot_in_key.toml: strict_mode: 0';
23 eval { TOML::Parser->new(strict_mode => 1)->parse($toml) };
24 like $@, qr/\ASyntax Error: line:2/m, 't/toml/dot_in_key.toml: strict_mode: 1';
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/cloud/
H A D_normalize.py226 if not self.strict_mode:
342 if not self.strict_mode:
395 if not self.strict_mode:
452 if not self.strict_mode:
511 [], self.strict_mode)
564 if not self.strict_mode:
662 if not self.strict_mode:
723 if not self.strict_mode:
863 if not self.strict_mode:
988 if not self.strict_mode:
[all …]
/dports/devel/grpc/grpc-1.42.0/tools/distrib/python/grpcio_tools/grpc_tools/
H A Dcommand.py23 def build_package_protos(package_root, strict_mode=False): argument
44 if strict_mode:
58 self.strict_mode = False
69 self.strict_mode)
/dports/devel/grpc130/grpc-1.30.2/tools/distrib/python/grpcio_tools/grpc_tools/
H A Dcommand.py24 def build_package_protos(package_root, strict_mode=False): argument
45 if strict_mode:
59 self.strict_mode = False
70 self.strict_mode)
/dports/devel/grpc134/grpc-1.34.1/tools/distrib/python/grpcio_tools/grpc_tools/
H A Dcommand.py24 def build_package_protos(package_root, strict_mode=False): argument
45 if strict_mode:
59 self.strict_mode = False
70 self.strict_mode)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/tools/distrib/python/grpcio_tools/grpc_tools/
H A Dcommand.py24 def build_package_protos(package_root, strict_mode=False): argument
45 if strict_mode:
59 self.strict_mode = False
70 self.strict_mode)
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/grpc_tools/
H A Dcommand.py23 def build_package_protos(package_root, strict_mode=False): argument
44 if strict_mode:
58 self.strict_mode = False
69 self.strict_mode)
/dports/misc/py-onnx/onnx-1.10.2/onnx/
H A Dshape_inference.py39 def infer_shapes(model, check_type=False, strict_mode=False, data_prop=False): # type: (Union[Mode… argument
42 inferred_model_str = C.infer_shapes(model_str, check_type, strict_mode, data_prop)
52 def infer_shapes_path(model_path, output_path='', check_type=False, strict_mode=False, data_prop=Fa… argument
65 C.infer_shapes_path(model_path, output_path, check_type, strict_mode, data_prop)
/dports/net/scapy/scapy-2.4.5/scapy/contrib/
H A Dlldp.py151 if conf.contribs['LLDP'].strict_mode():
163 if conf.contribs['LLDP'].strict_mode():
245 if conf.contribs['LLDP'].strict_mode():
261 conf.contribs['LLDP'].strict_mode():
344 if conf.contribs['LLDP'].strict_mode() and not self.id:
400 if conf.contribs['LLDP'].strict_mode() and not self.id:
418 if conf.contribs['LLDP'].strict_mode() and self._length != 2:
439 if conf.contribs['LLDP'].strict_mode() and self._length != 0:
522 if conf.contribs['LLDP'].strict_mode() and self._length != 4:
652 if conf.contribs['LLDP'].strict_mode():
[all …]
/dports/science/eccodes/eccodes-2.23.0-Source/tests/
H A Dbufr_extract_headers.c23 const int strict_mode = 1;
29 …rr = codes_extract_offsets_malloc(c, filename, PRODUCT_GRIB, &offsets, &num_messages, strict_mode);
47 const int strict_mode = 1; in main() local
57 err = codes_bufr_extract_headers_malloc(c, filename, &header_array, &num_messages, strict_mode); in main()
/dports/security/snuffleupagus/snuffleupagus-0.7.0/src/tests/strict_mode/
H A Dstrict_mode_enabled.phpt14 Fatal error: Uncaught TypeError: ini_set()%s given in %s/tests/strict_mode/strict_mode_enabled.php:…
16 #0 %s/tests/strict_mode/strict_mode_enabled.php(2): ini_set('display_errors', 1)
18 thrown in %s/tests/strict_mode/strict_mode_enabled.php on line 2
/dports/net-im/telepathy-idle/telepathy-idle-0.2.0/src/
H A Didle-handles.c39 gboolean idle_nickname_is_valid(const gchar *nickname, gboolean strict_mode) { in idle_nickname_is_valid() argument
42 IDLE_DEBUG("Validating nickname '%s' with strict mode %d", nickname, strict_mode); in idle_nickname_is_valid()
66 if (strict_mode) { in idle_nickname_is_valid()
73 if (strict_mode) { in idle_nickname_is_valid()

12345678910>>...23