Home
last modified time | relevance | path

Searched refs:Coalesce (Results 1 – 25 of 1766) sorted by relevance

12345678910>>...71

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Core/Test/System.Linq.Expressions/
H A DExpressionTest_Coalesce.cs38 Expression.Coalesce (null, Expression.Constant (1)); in Arg1Null()
68 var coalesce = Expression.Coalesce ( in IsCoalesceStringLifted()
81 var coalesce = Expression.Coalesce ( in IsCoalesceNullableIntLifted()
95 Expression.Coalesce (a, b), a, b).Compile (); in CoalesceNullableInt()
109 Expression.Coalesce (a, b), a, b).Compile (); in CoalesceString()
141 Expression.Coalesce ( in CoalesceUserDefinedConversion()
173 Expression.Coalesce ( in CoalesceNullableSlotIntoInteger()
191 Expression.Coalesce ( in WrongCoalesceConversionParameterCount()
206 Expression.Coalesce ( in WrongCoalesceConversionParameterType()
220 Expression.Coalesce ( in WrongCoalesceConversionReturnType()
[all …]
/dports/net-mgmt/p5-NetAddr-IP/NetAddr-IP-4.079/t/
H A Dv4-coalesce.t11 unless use_ok('NetAddr::IP', 'Coalesce');
26 my $r = Coalesce(24, 4, @ips);
27 diag "Coalesce returned $r"
28 unless isa_ok($r, 'ARRAY', 'Return type from Coalesce');
32 $r = Coalesce(24, 2, @ips);
33 diag "Coalesce returned $r"
34 unless isa_ok($r, 'ARRAY', 'Return type from Coalesce');
41 $r = Coalesce(24, 2, @ips, NetAddr::IP->new('10.0.0.125/23'));
42 diag "Coalesce returned $r"
43 unless isa_ok($r, 'ARRAY', 'Return type from Coalesce');
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/tests/BinaryOperators/Coalesce/
H A DBinaryCoalesceTests.cs91 public static void Coalesce(Array array1, Array array2, bool useInterpreter) in Coalesce() method in System.Linq.Expressions.Tests.BinaryCoalesceTests
303 BinaryExpression actual = Expression.Coalesce(left, right, conversion); in BasicCoalesceExpressionTest()
307 Assert.Equal(ExpressionType.Coalesce, actual.NodeType); in BasicCoalesceExpressionTest()
318 …Expression exp = Expression.Coalesce(Expression.Constant(0, typeof(int?)), Expression.Constant(0)); in CannotReduce()
448 Expression.Coalesce( in CoalesceToWiderReference()
455 Expression.Coalesce( in CoalesceToWiderReference()
466 Expression.Coalesce( in CoalesceToNarrowerReference()
473 Expression.Coalesce( in CoalesceToNarrowerReference()
484 Expression.Coalesce( in CoalesceReferenceToValueType()
491 Expression.Coalesce( in CoalesceReferenceToValueType()
[all …]
/dports/www/mod_php81/php-8.1.1/Zend/tests/throw/
H A D002.phpt49 $exception1 = new Exception('Coalesce non-null 1');
50 $exception2 = new Exception('Coalesce non-null 2');
58 $exception2 = new Exception('Coalesce null 2');
72 throw $exception ??= new Exception('Coalesce assignment null');
78 $exception = new Exception('Coalesce assignment non-null 1');
79 throw $exception ??= new Exception('Coalesce assignment non-null 2');
120 Coalesce non-null 1
121 Coalesce null 2
123 Coalesce assignment null
124 Coalesce assignment non-null 1
/dports/lang/php81/php-8.1.1/Zend/tests/throw/
H A D002.phpt49 $exception1 = new Exception('Coalesce non-null 1');
50 $exception2 = new Exception('Coalesce non-null 2');
58 $exception2 = new Exception('Coalesce null 2');
72 throw $exception ??= new Exception('Coalesce assignment null');
78 $exception = new Exception('Coalesce assignment non-null 1');
79 throw $exception ??= new Exception('Coalesce assignment non-null 2');
120 Coalesce non-null 1
121 Coalesce null 2
123 Coalesce assignment null
124 Coalesce assignment non-null 1
/dports/lang/php80/php-8.0.15/Zend/tests/throw/
H A D002.phpt49 $exception1 = new Exception('Coalesce non-null 1');
50 $exception2 = new Exception('Coalesce non-null 2');
58 $exception2 = new Exception('Coalesce null 2');
72 throw $exception ??= new Exception('Coalesce assignment null');
78 $exception = new Exception('Coalesce assignment non-null 1');
79 throw $exception ??= new Exception('Coalesce assignment non-null 2');
120 Coalesce non-null 1
121 Coalesce null 2
123 Coalesce assignment null
124 Coalesce assignment non-null 1
/dports/www/mod_php80/php-8.0.15/Zend/tests/throw/
H A D002.phpt49 $exception1 = new Exception('Coalesce non-null 1');
50 $exception2 = new Exception('Coalesce non-null 2');
58 $exception2 = new Exception('Coalesce null 2');
72 throw $exception ??= new Exception('Coalesce assignment null');
78 $exception = new Exception('Coalesce assignment non-null 1');
79 throw $exception ??= new Exception('Coalesce assignment non-null 2');
120 Coalesce non-null 1
121 Coalesce null 2
123 Coalesce assignment null
124 Coalesce assignment non-null 1
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/
H A DInferFiltersFromConstraintsSuite.scala135 .where(IsNotNull('a) && IsNotNull(Coalesce(Seq('a, 'b))) && 'a === Coalesce(Seq('a, 'b)))
173 && 'a === Coalesce(Seq('a, 'a)) && 'a <=> Coalesce(Seq('a, 'a)) && 'a <=> 'a
174 && Coalesce(Seq('a, 'a)) <=> 'b && Coalesce(Seq('a, 'a)) <=> Coalesce(Seq('a, 'a))
175 && 'a === 'b && IsNotNull(Coalesce(Seq('a, 'b))) && 'a === Coalesce(Seq('a, 'b))
178 && 'b === Coalesce(Seq('b, 'b)) && 'b <=> Coalesce(Seq('b, 'b))
180 .select('a, 'b.as('d), Coalesce(Seq('a, 'b)).as('int_col)).as("t")
182 .where(IsNotNull('a) && IsNotNull(Coalesce(Seq('a, 'a)))
183 && 'a === Coalesce(Seq('a, 'a)) && 'a <=> Coalesce(Seq('a, 'a)) && 'a <=> 'a
184 && Coalesce(Seq('a, 'a)) <=> Coalesce(Seq('a, 'a))), Inner,
188 && Coalesce(Seq("t.d".attr, "t.d".attr)) <=> "t.int_col".attr))
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/alecthomas/chroma/
H A Dregexp_test.go10 l := Coalesce(MustNewLexer(&Config{EnsureNL: true}, Rules{ // nolint: forbidigo
19 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
30 l := Coalesce(MustNewLexer(&Config{}, Rules{ // nolint: forbidigo
48 l := Coalesce(MustNewLexer(&Config{}, Rules{ // nolint: forbidigo
65 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
104 l := Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
121 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
137 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
153 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
170 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/alecthomas/chroma/
H A Dregexp_test.go10 l := Coalesce(MustNewLexer(&Config{EnsureNL: true}, Rules{ // nolint: forbidigo
19 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
30 l := Coalesce(MustNewLexer(&Config{}, Rules{ // nolint: forbidigo
48 l := Coalesce(MustNewLexer(&Config{}, Rules{ // nolint: forbidigo
65 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
104 l := Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
121 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
137 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
153 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
170 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
/dports/devel/chroma/chroma-0.9.2/
H A Dregexp_test.go10 l := Coalesce(MustNewLexer(&Config{EnsureNL: true}, Rules{ // nolint: forbidigo
19 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
30 l := Coalesce(MustNewLexer(&Config{}, Rules{ // nolint: forbidigo
48 l := Coalesce(MustNewLexer(&Config{}, Rules{ // nolint: forbidigo
65 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
104 l := Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
121 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
137 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
153 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
170 l = Coalesce(MustNewLexer(nil, Rules{ // nolint: forbidigo
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/serf/serf-0.7.0/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/sysutils/serf/serf-0.8.5/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/hashicorp/serf/serf/
H A Dcoalesce_user_test.go25 Coalesce: true,
30 Coalesce: true,
36 Coalesce: true,
42 Coalesce: true,
89 {UserEvent{Coalesce: false}, false},
90 {UserEvent{Coalesce: true}, true},
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/
H A DSum.scala64 Coalesce(Seq(Add(Coalesce(Seq(sum, zero)), Cast(child, sumDataType)), sum))
69 Add(Coalesce(Seq(sum, zero)), Cast(child, sumDataType))
77 Coalesce(Seq(Add(Coalesce(Seq(sum.left, zero)), sum.right), sum.left))
/dports/misc/cheat/cheat-4.2.2/vendor/github.com/alecthomas/chroma/chroma-0.9.1/
H A Dregexp_test.go10 l := Coalesce(MustNewLexer(&Config{EnsureNL: true}, Rules{
19 l = Coalesce(MustNewLexer(nil, Rules{
30 l := Coalesce(MustNewLexer(&Config{}, Rules{
48 l := Coalesce(MustNewLexer(&Config{}, Rules{
65 l = Coalesce(MustNewLexer(nil, Rules{
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/alecthomas/chroma/
H A Dregexp_test.go10 l := Coalesce(MustNewLexer(&Config{EnsureNL: true}, Rules{
19 l = Coalesce(MustNewLexer(nil, Rules{
30 l := Coalesce(MustNewLexer(&Config{}, Rules{
48 l := Coalesce(MustNewLexer(&Config{}, Rules{
65 l = Coalesce(MustNewLexer(nil, Rules{
/dports/devel/gh/cli-2.4.0/vendor/github.com/alecthomas/chroma/
H A Dregexp_test.go10 l := Coalesce(MustNewLexer(&Config{EnsureNL: true}, Rules{
19 l = Coalesce(MustNewLexer(nil, Rules{
30 l := Coalesce(MustNewLexer(&Config{}, Rules{
48 l := Coalesce(MustNewLexer(&Config{}, Rules{
65 l = Coalesce(MustNewLexer(nil, Rules{
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/common/input/
H A Dweb_input_event_unittest.cc56 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
84 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
106 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
126 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
142 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
150 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
194 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()
229 coalesced_event.Coalesce(event_to_be_coalesced); in TEST()

12345678910>>...71