Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,114 for EQUAL (0.14 sec)

  1. android/guava/src/com/google/common/math/DoubleMath.java

       *
       * <ul>
       *   <li>All NaNs are fuzzily equal.
       *   <li>If {@code a == b}, then {@code a} and {@code b} are always fuzzily equal.
       *   <li>Positive and negative zero are always fuzzily equal.
       *   <li>If {@code tolerance} is zero, and neither {@code a} nor {@code b} is NaN, then {@code a}
       *       and {@code b} are fuzzily equal if and only if {@code a == b}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/DoubleMath.java

       *
       * <ul>
       *   <li>All NaNs are fuzzily equal.
       *   <li>If {@code a == b}, then {@code a} and {@code b} are always fuzzily equal.
       *   <li>Positive and negative zero are always fuzzily equal.
       *   <li>If {@code tolerance} is zero, and neither {@code a} nor {@code b} is NaN, then {@code a}
       *       and {@code b} are fuzzily equal if and only if {@code a == b}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. pkg/kubelet/userns/userns_manager_test.go

    	assert.NoError(t, err)
    	assert.Equal(t, userNsLength, int(length), "m.isSet(%d).length=%v", allocated, length)
    	assert.Equal(t, true, m.isSet(allocated), "m.isSet(%d)", allocated)
    
    	allocated2, length2, err := m.allocateOne("two")
    	assert.NoError(t, err)
    	assert.NotEqual(t, allocated, allocated2, "allocated != allocated2")
    	assert.Equal(t, length, length2, "length == length2")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    		needsUpdate = true
    	} else {
    		if !bytes.Equal(expectedJSON, actualJSON) {
    			t.Errorf("json differs")
    			t.Log(cmp.Diff(string(actualJSON), string(expectedJSON)))
    			needsUpdate = true
    		}
    
    		if !bytes.Equal(expectedYAML, actualYAML) {
    			t.Errorf("yaml differs")
    			t.Log(cmp.Diff(string(actualYAML), string(expectedYAML)))
    			needsUpdate = true
    		}
    
    		if !bytes.Equal(expectedProto, actualProto) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. src/crypto/ecdh/ecdh_test.go

    			t.Error(err)
    		}
    		if !bytes.Equal(aliceKey.PublicKey().Bytes(), alicePubKey.Bytes()) {
    			t.Error("encoded and decoded public keys are different")
    		}
    		if !aliceKey.PublicKey().Equal(alicePubKey) {
    			t.Error("encoded and decoded public keys are different")
    		}
    
    		alicePrivKey, err := curve.NewPrivateKey(aliceKey.Bytes())
    		if err != nil {
    			t.Error(err)
    		}
    		if !bytes.Equal(aliceKey.Bytes(), alicePrivKey.Bytes()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/ca_test.go

    	}
    
    	signingCertFromCA, _, certChainBytesFromCA, rootCertBytesFromCA := ca.GetCAKeyCertBundle().GetAll()
    
    	if !signingCert.Equal(signingCertFromCA) {
    		t.Error("Signing cert does not match")
    	}
    
    	if !bytes.Equal(rootCertBytesFromCA, []byte(rootCertPem)) {
    		t.Error("Root cert does not match")
    	}
    
    	if len(certChainBytesFromCA) != 0 {
    		t.Errorf("Cert chain should be empty")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Network.java

       * same structural relationships as those in this network.
       *
       * <p>Thus, two networks A and B are equal if <b>all</b> of the following are true:
       *
       * <ul>
       *   <li>A and B have equal {@link #isDirected() directedness}.
       *   <li>A and B have equal {@link #nodes() node sets}.
       *   <li>A and B have equal {@link #edges() edge sets}.
       *   <li>Every edge in A and B connects the same nodes in the same direction (if any).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/context_test.go

    		ServiceDiscovery: serviceDiscovery,
    	}
    
    	proxy := &model.Proxy{}
    	proxy.SetServiceTargets(env)
    
    	assert.Equal(t, len(proxy.ServiceTargets), 3)
    	assert.Equal(t, proxy.ServiceTargets[0].Service.Hostname, "test2.com")
    	assert.Equal(t, proxy.ServiceTargets[1].Service.Hostname, "test3.com")
    	assert.Equal(t, proxy.ServiceTargets[2].Service.Hostname, "test1.com")
    }
    
    func TestGlobalUnicastIP(t *testing.T) {
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    func verifyRootCertAndPrivateKey(t *testing.T, shouldMatch bool, itemA, itemB rootCertItem) {
    	isMatched := bytes.Equal(itemA.caSecret.Data[CACertFile], itemB.caSecret.Data[CACertFile])
    	if isMatched != shouldMatch {
    		t.Errorf("Verification of root cert in CA secret failed. Want %v got %v", shouldMatch, isMatched)
    	}
    	isMatched = bytes.Equal(itemA.rootCertInKeyCertBundle, itemB.rootCertInKeyCertBundle)
    	if isMatched != shouldMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    		}
    
    		// Check that the correlated object is considered equal to the expected value
    		if (c.ExpectEqual || reflect.DeepEqual(correlatedObject.Value, correlatedObject.OldValue)) != correlatedObject.CachedDeepEqual() {
    			return fmt.Errorf("expected equal, got not equal")
    		}
    	}
    
    	return nil
    }
    
    // Creates a *spec.Schema Schema by decoding the given YAML. Panics on error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top