Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 868 for EQUAL (0.06 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

            Module module = (Module) o;
            return Objects.equal(dependencies, module.dependencies)
                && Objects.equal(excludeFolders, module.excludeFolders)
                && Objects.equal(outputDir, module.outputDir)
                && Objects.equal(sourceFolders, module.sourceFolders)
                && Objects.equal(generatedSourceFolders, module.generatedSourceFolders)
                && Objects.equal(jdkName, module.jdkName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic_test.go

    	}
    	for i, c := range cases {
    		testStr := fmt.Sprintf("test[%d]", i)
    		actualStatus, actualErr := pleg.cache.Get(c.pod.ID)
    		assert.Equal(t, c.status, actualStatus, testStr)
    		assert.Equal(t, c.error, actualErr, testStr)
    	}
    	// pleg should not generate any event for pods[1] because of the error.
    	assert.Exactly(t, []*PodLifecycleEvent{events[0]}, actualEvents)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. src/crypto/x509/oid_test.go

    			continue
    		}
    
    		if asn1OID != nil && !o.Equal(asn1OID) {
    			t.Errorf("(%#v).toASN1OID() = (%v, true); want = (%v, true)", oid, o, asn1OID)
    		}
    
    		if v.ints != nil {
    			oid2, err := OIDFromInts(v.ints)
    			if err != nil {
    				t.Errorf("OIDFromInts(%v) = (%v, %v); want = (%v, nil)", v.ints, oid2, err, oid)
    			}
    			if !oid2.Equal(oid) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top