Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,217 for _Equal (0.11 sec)

  1. guava/src/com/google/common/collect/ForwardingMap.java

     * invoke methods, they invoke methods on the {@code ForwardingMap}.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as a {@code SortedMap} whose comparator is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/collect/GeneralRange.java

              && hasUpperBound == r.hasUpperBound
              && getLowerBoundType().equals(r.getLowerBoundType())
              && getUpperBoundType().equals(r.getUpperBoundType())
              && Objects.equal(getLowerEndpoint(), r.getLowerEndpoint())
              && Objects.equal(getUpperEndpoint(), r.getUpperEndpoint());
        }
        return false;
      }
    
      @Override
      public int hashCode() {
        return Objects.hashCode(
            comparator,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top