Home
last modified time | relevance | path

Searched refs:first_key (Results 1 – 25 of 823) sorted by relevance

12345678910>>...33

/dports/sysutils/conan/conan-1.44.0/conans/client/cmd/
H A Dprofile.py14 first_key = tmp[0]
19 return first_key, rest_key
63 if first_key == "settings":
65 elif first_key == "options":
68 elif first_key == "env":
70 elif first_key == "conf":
84 if first_key == "settings":
88 elif first_key == "env":
94 elif first_key == "conf":
117 elif first_key == "env":
[all …]
/dports/graphics/blender/blender-2.91.0/intern/cycles/render/
H A Dhair.cpp32 P[0] = curve_keys[max(first_key + k - 1, first_key)]; in bounds_grow()
33 P[1] = curve_keys[first_key + k]; in bounds_grow()
34 P[2] = curve_keys[first_key + k + 1]; in bounds_grow()
35 P[3] = curve_keys[min(first_key + k + 2, first_key + num_keys - 1)]; in bounds_grow()
44 float mr = max(curve_radius[first_key + k], curve_radius[first_key + k + 1]); in bounds_grow()
58 P[0] = curve_keys[max(first_key + k - 1, first_key)]; in bounds_grow()
59 P[1] = curve_keys[first_key + k]; in bounds_grow()
60 P[2] = curve_keys[first_key + k + 1]; in bounds_grow()
61 P[3] = curve_keys[min(first_key + k + 2, first_key + num_keys - 1)]; in bounds_grow()
75 float mr = max(curve_radius[first_key + k], curve_radius[first_key + k + 1]); in bounds_grow()
[all …]
/dports/databases/speedtables/speedtables-1.13.12/ctables/tests/
H A Dkey-tests.tcl29 set first_key [t store id 1 rank 1 name first]
30 if {"$first_key" != "1"} {
38 if {"[lindex [t get $first_key id] 0]" != "1"} {
39 error "row '$first_key' should have had id 1"
42 if {"[lindex [t get $first_key rank] 0]" != "1"} {
43 error "row '$first_key' should have had rank 1"
46 if {"[t store id 1 rank 3 name first]" != "$first_key"} {
47 error "Key should have been '$first_key'"
50 if {"[lindex [t get $first_key rank] 0]" != "3"} {
51 error "row '$first_key' should have had rank 3"
/dports/devel/aws-c-common/aws-c-common-0.6.15/tests/
H A Dcache_test.c28 const char *first_key = "first"; in s_test_lru_cache_overflow_static_members_fn() local
38 ASSERT_SUCCESS(aws_cache_put(lru_cache, first_key, &first)); in s_test_lru_cache_overflow_static_members_fn()
88 const char *first_key = "first"; in AWS_TEST_CASE() local
147 const char *first_key = "first"; in AWS_TEST_CASE() local
185 const char *first_key = "first"; in AWS_TEST_CASE() local
245 const char *first_key = "first"; in AWS_TEST_CASE() local
315 const char *first_key = "first"; in s_test_cache_entries_cleanup_fn() local
321 ASSERT_SUCCESS(aws_cache_put(cache, first_key, &first)); in s_test_cache_entries_cleanup_fn()
348 const char *first_key = "first"; in AWS_TEST_CASE() local
353 ASSERT_SUCCESS(aws_cache_put(cache, first_key, &first)); in AWS_TEST_CASE()
[all …]
/dports/lang/perl5.34/perl-5.34.0/t/op/
H A Dhash-rt85026.t41 my ($first_key, $second_key);
45 $first_key = $chain->[0];
51 $first_key ||
59 Found keys '$first_key' and '$second_key' on chain $riter
60 Will now iterato to key '$first_key' then delete '$first_key' and '$second_key'.
63 1 until $first_key eq each %hash;
64 delete $hash{$first_key};
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/t/op/
H A Dhash-rt85026.t41 my ($first_key, $second_key);
45 $first_key = $chain->[0];
51 $first_key ||
59 Found keys '$first_key' and '$second_key' on chain $riter
60 Will now iterato to key '$first_key' then delete '$first_key' and '$second_key'.
63 1 until $first_key eq each %hash;
64 delete $hash{$first_key};
/dports/lang/perl5.30/perl-5.30.3/t/op/
H A Dhash-rt85026.t41 my ($first_key, $second_key);
45 $first_key = $chain->[0];
51 $first_key ||
59 Found keys '$first_key' and '$second_key' on chain $riter
60 Will now iterato to key '$first_key' then delete '$first_key' and '$second_key'.
63 1 until $first_key eq each %hash;
64 delete $hash{$first_key};
/dports/lang/perl5.32/perl-5.32.1/t/op/
H A Dhash-rt85026.t41 my ($first_key, $second_key);
45 $first_key = $chain->[0];
51 $first_key ||
59 Found keys '$first_key' and '$second_key' on chain $riter
60 Will now iterato to key '$first_key' then delete '$first_key' and '$second_key'.
63 1 until $first_key eq each %hash;
64 delete $hash{$first_key};
/dports/devel/py-cfn-lint/cfn-lint-0.54.2/src/cfnlint/rules/functions/
H A DFindInMapKeys.py22 first_key = keys[0]
28 if isinstance(first_key, (six.string_types, int)):
30 if mapping.get(first_key) is None:
34 … message.format(first_key, map_name, first_key, '/'.join(map(str, tree)))))
35 if mapping.get(first_key):
37 if mapping.get(first_key, {}).get(second_key) is None:
41 … message.format(second_key, map_name, first_key, '/'.join(map(str, tree)))))
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/itertools-0.10.1/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/itertools-0.8.2/src/
H A Dminmax.rs80 let first_key = key_for(&first); in minmax_impl() localVariable
81 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
83 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
90 let first_key = key_for(&first); in minmax_impl() localVariable
92 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
93 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
95 min_key = first_key; in minmax_impl()
106 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
108 max_key = first_key; in minmax_impl()
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/itertools-0.10.3/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/itertools-0.8.2/src/
H A Dminmax.rs80 let first_key = key_for(&first); in minmax_impl() localVariable
81 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
83 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
90 let first_key = key_for(&first); in minmax_impl() localVariable
92 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
93 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
95 min_key = first_key; in minmax_impl()
106 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
108 max_key = first_key; in minmax_impl()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/itertools-0.10.1/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/itertools-0.10.0/src/
H A Dminmax.rs80 let first_key = key_for(&first); in minmax_impl() localVariable
81 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
83 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
90 let first_key = key_for(&first); in minmax_impl() localVariable
92 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
93 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
95 min_key = first_key; in minmax_impl()
106 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
108 max_key = first_key; in minmax_impl()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/itertools-0.9.0/src/
H A Dminmax.rs80 let first_key = key_for(&first); in minmax_impl() localVariable
81 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
83 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
90 let first_key = key_for(&first); in minmax_impl() localVariable
92 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
93 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
95 min_key = first_key; in minmax_impl()
106 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
108 max_key = first_key; in minmax_impl()
/dports/graphics/dssim/dssim-3.1.2/cargo-crates/itertools-0.10.3/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/itertools-0.10.3/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/lang/gleam/gleam-0.18.2/cargo-crates/itertools-0.10.3/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/x11-wm/leftwm/leftwm-0.2.11/cargo-crates/itertools-0.10.1/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/databases/redisjson/RedisJSON-2.0.6/cargo-crates/itertools-0.10.3/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/itertools-0.9.0/src/
H A Dminmax.rs80 let first_key = key_for(&first); in minmax_impl() localVariable
81 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
83 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
90 let first_key = key_for(&first); in minmax_impl() localVariable
92 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
93 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
95 min_key = first_key; in minmax_impl()
106 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
108 max_key = first_key; in minmax_impl()
/dports/devel/grex/grex-1.3.0/cargo-crates/itertools-0.10.1/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/itertools-0.10.1/src/
H A Dminmax.rs81 let first_key = key_for(&first); in minmax_impl() localVariable
82 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
84 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
91 let first_key = key_for(&first); in minmax_impl() localVariable
93 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
94 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
96 min_key = first_key; in minmax_impl()
107 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
109 max_key = first_key; in minmax_impl()
/dports/net-im/fractal/fractal-4.4.0/vendor/itertools/src/
H A Dminmax.rs80 let first_key = key_for(&first); in minmax_impl() localVariable
81 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
83 } else if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
90 let first_key = key_for(&first); in minmax_impl() localVariable
92 if !lt(&second, &first, &second_key, &first_key) { in minmax_impl()
93 if lt(&first, &min, &first_key, &min_key) { in minmax_impl()
95 min_key = first_key; in minmax_impl()
106 if !lt(&first, &max, &first_key, &max_key) { in minmax_impl()
108 max_key = first_key; in minmax_impl()

12345678910>>...33