Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 277 for subset16 (0.22 sec)

  1. tests/integration/ambient/cnirepair/main_test.go

    			ServiceAccount: true,
    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    					Version:  "v1",
    				},
    				{
    					Replicas: 1,
    					Version:  "v2",
    				},
    			},
    		}).
    		WithConfig(echo.Config{
    			Service:        Uncaptured,
    			Namespace:      apps.Namespace,
    			Ports:          ports.All(),
    			ServiceAccount: true,
    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/builder.go

    func (b *builder) validateTemplates(config echo.Config, c cluster.Cluster) bool {
    	expected := sets.New[string]()
    	for _, subset := range config.Subsets {
    		expected.InsertAll(parseList(subset.Annotations[annotation.InjectTemplates.Name])...)
    	}
    	if b.templates == nil || b.templates[c.Name()] == nil {
    		return expected.IsEmpty()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/main_test.go

    	clientConfig := echo.Config{
    		Namespace: customNs.Get(),
    		Service:   "client",
    	}
    	serverNakedFooConfig := echo.Config{
    		Namespace: customNs.Get(),
    		Service:   "server-naked-foo",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    			},
    		},
    		ServiceAccount: true,
    		Ports: []echo.Port{
    			{
    				Name:         "https",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/httproute_test.go

    		},
    		{
    			name: "back subset of cluster domain in address",
    			service: &model.Service{
    				Hostname:     "aaa.example.local",
    				MeshExternal: true,
    			},
    			port: 7777,
    			node: &model.Proxy{
    				DNSDomain: "tests.svc.cluster.local",
    			},
    			want: []string{"aaa.example.local"},
    		},
    		{
    			name: "front subset of cluster domain in address",
    			service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		subsets := sets.String{}
    		for _, subset := range rule.Subsets {
    			if subset == nil {
    				v = AppendValidation(v, errors.New("subset may not be null"))
    				continue
    			}
    			if subsets.InsertContains(subset.Name) {
    				v = AppendValidation(v, fmt.Errorf("duplicate subset names: %s", subset.Name))
    			}
    			v = AppendValidation(v, validateSubset(subset))
    		}
    		v = AppendValidation(v,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/go/types/instantiate.go

    	}
    
    	// If V is itself an interface, each of its possible types must be in the set
    	// of T types (i.e., the V type set must be a subset of the T type set).
    	// Interfaces V with empty type sets were already excluded above.
    	if Vi != nil {
    		if !Vi.typeSet().subsetOf(Ti.typeSet()) {
    			// TODO(gri) report which type is missing
    			if cause != nil {
    				*cause = check.sprintf("%s does not %s %s", V, verb, T)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/go/types/typeterm.go

    	case x.typ == nil:
    		return true // t ∈ 𝓤 == true
    	}
    	// ∅ ⊂ x ⊂ 𝓤
    
    	u := t
    	if x.tilde {
    		u = under(u)
    	}
    	return Identical(x.typ, u)
    }
    
    // subsetOf reports whether x ⊆ y.
    func (x *term) subsetOf(y *term) bool {
    	// easy cases
    	switch {
    	case x == nil:
    		return true // ∅ ⊆ y == true
    	case y == nil:
    		return false // x ⊆ ∅ == false since x != ∅
    	case y.typ == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

          } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE) {
            return set.subSet(firstExclusive, false, lastExclusive, false);
          } else if (from == Bound.EXCLUSIVE && to == Bound.INCLUSIVE) {
            return set.subSet(firstExclusive, false, lastInclusive, true);
          } else if (from == Bound.INCLUSIVE && to == Bound.INCLUSIVE) {
            return set.subSet(firstInclusive, true, lastInclusive, true);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

          } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE) {
            return set.subSet(firstExclusive, false, lastExclusive, false);
          } else if (from == Bound.EXCLUSIVE && to == Bound.INCLUSIVE) {
            return set.subSet(firstExclusive, false, lastInclusive, true);
          } else if (from == Bound.INCLUSIVE && to == Bound.INCLUSIVE) {
            return set.subSet(firstInclusive, true, lastInclusive, true);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Endpoints.json

            "apiVersion": "apiVersionValue",
            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "subsets": [
        {
          "addresses": [
            {
              "ip": "ipValue",
              "hostname": "hostnameValue",
              "nodeName": "nodeNameValue",
              "targetRef": {
                "kind": "kindValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top