Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,031 for _Equal (0.11 sec)

  1. src/crypto/internal/edwards25519/field/fe_test.go

    	var c, d Element
    
    	c.Select(&a, &b, 1)
    	d.Select(&a, &b, 0)
    
    	if c.Equal(&a) != 1 || d.Equal(&b) != 1 {
    		t.Errorf("Select failed")
    	}
    
    	c.Swap(&d, 0)
    
    	if c.Equal(&a) != 1 || d.Equal(&b) != 1 {
    		t.Errorf("Swap failed")
    	}
    
    	c.Swap(&d, 1)
    
    	if c.Equal(&b) != 1 || d.Equal(&a) != 1 {
    		t.Errorf("Swap failed")
    	}
    }
    
    func TestMult32(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof GenericArrayType) {
            GenericArrayType that = (GenericArrayType) obj;
            return Objects.equal(getGenericComponentType(), that.getGenericComponentType());
          }
          return false;
        }
    
        private static final long serialVersionUID = 0;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat_test.go

    	if x.Equal(expected) != 1 {
    		t.Errorf("%+v != %+v", x, expected)
    	}
    }
    
    func TestModAdd(t *testing.T) {
    	m := modulusFromBytes([]byte{13})
    	x := &Nat{[]uint{6}}
    	y := &Nat{[]uint{7}}
    	x.Add(y, m)
    	expected := &Nat{[]uint{0}}
    	if x.Equal(expected) != 1 {
    		t.Errorf("%+v != %+v", x, expected)
    	}
    	x.Add(y, m)
    	expected = &Nat{[]uint{7}}
    	if x.Equal(expected) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	}
    
    	createPod("128.0.0.1", "pod")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), []types.NamespacedName{{Name: "pod", Namespace: "ns"}})
    
    	// Change the pod IP. This can happen if the pod moves to another node, for example.
    	createPod("128.0.0.2", "pod")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.2"), []types.NamespacedName{{Name: "pod", Namespace: "ns"}})
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), nil)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	// ensure we stored and can fetch both; neither was blown away
    	assert.Equal(t,
    		s.lookup(s.wleXdsName("emptyaddr1"))[0].GetWorkload().GetName(),
    		"emptyaddr1") // can lookup this workload by name
    	assert.Equal(t,
    		s.lookup(s.wleXdsName("emptyaddr2"))[0].GetWorkload().GetName(),
    		"emptyaddr2") // can lookup this workload by name
    
    	assert.Equal(t,
    		len(s.lookup(s.addrXdsName(""))),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    			HostPort: 8080,
    		},
    	}
    
    	podSandboxConfig, err := m.generatePodSandboxConfig(pod, 1)
    	assert.NoError(t, err)
    	assert.Equal(t, expectedLabels, podSandboxConfig.Labels)
    	assert.Equal(t, expectedLogDirectory, podSandboxConfig.LogDirectory)
    	assert.Equal(t, expectedMetadata, podSandboxConfig.Metadata)
    	assert.Equal(t, expectedPortMappings, podSandboxConfig.PortMappings)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/test/framework/suite_test.go

    			s.envFactory = newFakeEnvironmentFactory(c.actual)
    			s.RequireMinClusters(c.min)
    			s.RequireMaxClusters(c.max)
    			s.Run()
    
    			assert.Equal(t, runCalled, true)
    			if c.expectSkip {
    				assert.Equal(t, runSkipped, true)
    			} else {
    				assert.Equal(t, runSkipped, false)
    			}
    		})
    	}
    }
    
    func TestSuite_Setup(t *testing.T) {
    	defer cleanupRT()
    	g := NewWithT(t)
    
    	var runCalled bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/validation/validation.go

    	}
    
    	if config.TCPFinTimeout.Duration < 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("TCPFinTimeout"), config.TCPFinTimeout, "must be greater than or equal to 0"))
    	}
    
    	if config.UDPTimeout.Duration < 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("UDPTimeout"), config.UDPTimeout, "must be greater than or equal to 0"))
    	}
    
    	return allErrs
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    // Equality op legalizations.
    // tf.Equal and tf.NotEqual expand from the same pattern. Full semantics are
    // verified for tf.Equal and pattern application only for tf.NotEqual
    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @equal
    func.func @equal(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2xi1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Equivalence.java

    import com.google.errorprone.annotations.ForOverride;
    import java.io.Serializable;
    import java.util.function.BiPredicate;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A strategy for determining whether two instances are considered equivalent, and for computing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top