Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 180 for _Equal (0.14 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    				t.Errorf("got diff: `%v", diff)
    			}
    			if tc.enableAutoSni {
    				if len(tc.tls.Sni) == 0 {
    					assert.Equal(t, tc.opts.mutable.httpProtocolOptions.UpstreamHttpProtocolOptions.AutoSni, true)
    				}
    				if tc.enableVerifyCertAtClient && len(tc.tls.Sni) == 0 && len(tc.tls.SubjectAltNames) == 0 {
    					assert.Equal(t, tc.opts.mutable.httpProtocolOptions.UpstreamHttpProtocolOptions.AutoSanValidation, true)
    				}
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        b = Arrays.<@Nullable Integer>asList(4, 8, null, 16, 23, 42);
        assertTrue(Iterators.elementsEqual(a.iterator(), b.iterator()));
    
        // Different Iterable types (still equal elements, though).
        a = ImmutableList.of(4, 8, 15, 16, 23, 42);
        b = asList(4, 8, 15, 16, 23, 42);
        assertTrue(Iterators.elementsEqual(a.iterator(), b.iterator()));
    
        // An element differs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	if len(buf) <= 8 {
    		return payload, 0, 0, fmt.Errorf("xlMeta: no data")
    	}
    
    	if !bytes.Equal(buf[:4], xlHeader[:]) {
    		return payload, 0, 0, fmt.Errorf("xlMeta: unknown XLv2 header, expected %v, got %v", xlHeader[:4], buf[:4])
    	}
    
    	if bytes.Equal(buf[4:8], []byte("1   ")) {
    		// Set as 1,0.
    		major, minor = 1, 0
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/math/rand/v2/chacha8_test.go

    	}
    	h.Write(buf)
    	if got := h.Sum(nil); !bytes.Equal(got, chacha8hash) {
    		t.Errorf("transcript incorrect: got %x, want %x", got, chacha8hash)
    	}
    
    	p.Seed(chacha8seed)
    	h.Reset()
    
    	buf = make([]byte, chacha8outlen)
    	if _, err := io.ReadFull(iotest.OneByteReader(p), buf); err != nil {
    		t.Errorf("one byte reads: %v", err)
    	}
    	h.Write(buf)
    	if got := h.Sum(nil); !bytes.Equal(got, chacha8hash) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  5. cmd/iam.go

    	for normKey, origKeys := range normalizedDNKeysMap {
    		if len(origKeys) > 1 {
    			// If there are multiple DN keys that normalize to the same value,
    			// check if the policy mappings are equal, if they are we don't need
    			// to return an error.
    			policiesDiffer := false
    			firstMappedPolicies := policyMap[origKeys[0]].policySet()
    			for i := 1; i < len(origKeys); i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Requests will be matched against the Host field in the following way:
    	// 1. If Host is precise, the request matches this rule if the http host header is equal to Host.
    	// 2. If Host is a wildcard, then the request matches this rule if the http host header
    	// is to equal to the suffix (removing the first label) of the wildcard rule.
    	// +optional
    	Host string `json:"host,omitempty" protobuf:"bytes,1,opt,name=host"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                contextualLabel == "Problem: In version catalog libs, alias '$reservedName' is not a valid alias."
                details == "Prefix for dependency shouldn\'t be equal to '$prefix'"
                solutions == [ 'Use a different alias which prefix is not equal to \'bundles\', \'plugins\', or \'versions\'' ]
            }
    
            where:
            reservedName  | prefix
            "bundles"     | "bundles"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    				if pkg := modAddedBy[err.Module()]; pkg != nil {
    					ld.error(fmt.Errorf("%s: %w", pkg.stackText(), err.Err))
    					break
    				}
    			}
    			ld.error(err)
    			break
    		}
    		if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
    			// Something is deeply wrong. resolveMissingImports gave us a non-empty
    			// set of modules to add to the graph, but adding those modules had no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    func TestNameListAvoidDNS(t *testing.T) {
    	c := &dnsConfig{search: []string{"go.dev.", "onion."}}
    	got := c.nameList("www")
    	if !slices.Equal(got, []string{"www.", "www.go.dev."}) {
    		t.Fatalf(`nameList("www") = %v, want "www.", "www.go.dev."`, got)
    	}
    
    	got = c.nameList("www.onion")
    	if !slices.Equal(got, []string{"www.onion.go.dev."}) {
    		t.Fatalf(`nameList("www.onion") = %v, want "www.onion.go.dev."`, got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        // full match
    
                        // We can compare here by length, because pname is always
                        // a substring of name, so same length means they are equal.
                        type.setRedirect(aliasedNode);
                        return true;
                    } else {
                        //partial match
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top