Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 633 for subreg (0.2 sec)

  1. cni/pkg/install/testdata/list-with-istio.conflist

            }
          },
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 724 bytes
    - Viewed (0)
  2. cni/test/testdata/expected/minikube_cni.conflist.expected

          "bridge": "mybridge",
          "ipMasq": true,
          "ipam": {
            "gateway": "10.1.0.1",
            "routes": [
              {
                "dst": "0.0.0.0/0"
              }
            ],
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "isGateway": true,
          "mtu": 1460,
          "name": "rkt.kubernetes.io",
          "type": "bridge"
        },
        {
          "ambient_enabled": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 875 bytes
    - Viewed (0)
  3. test/typeparam/sets.go

    }
    
    // AddSet adds all the elements of s2 to s.
    func (s _Set[Elem]) AddSet(s2 _Set[Elem]) {
    	for v := range s2.m {
    		s.m[v] = struct{}{}
    	}
    }
    
    // SubSet removes all elements in s2 from s.
    // Values in s2 that are not in s are ignored.
    func (s _Set[Elem]) SubSet(s2 _Set[Elem]) {
    	for v := range s2.m {
    		delete(s.m, v)
    	}
    }
    
    // Intersect removes all elements from s that are not present in s2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. tests/testdata/config/rule-ingressgateway.yaml

      namespace: testns
    spec:
      hosts:
        - uk.bookinfo.com
      gateways:
      - istio-ingressgateway # pinned to ingress gateway only
      http:
        - route:
          - destination:
              host: c
              subset: v2
              port:
                number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 367 bytes
    - Viewed (0)
  5. pilot/pkg/model/service_test.go

    func TestIsValidSubsetKey(t *testing.T) {
    	cases := []struct {
    		subsetkey string
    		expectErr bool
    	}{
    		{
    			subsetkey: "outbound|80|subset|hostname",
    			expectErr: false,
    		},
    		{
    			subsetkey: "outbound|80||hostname",
    			expectErr: false,
    		},
    		{
    			subsetkey: "outbound|80|subset||hostname",
    			expectErr: true,
    		},
    		{
    			subsetkey: "",
    			expectErr: true,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/reconciler_test.go

    			}},
    		}},
    		existingEndpointSlices: []*discovery.EndpointSlice{},
    		expectedNumSlices:      0,
    		expectedClientActions:  0,
    		expectedMetrics:        &expectedMetrics{},
    	}, {
    		testName: "Endpoints with 1 subset, port, and address",
    		subsets: []corev1.EndpointSubset{{
    			Ports: []corev1.EndpointPort{{
    				Name:     "http",
    				Port:     80,
    				Protocol: corev1.ProtocolTCP,
    			}},
    			Addresses: []corev1.EndpointAddress{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.net_pkgadded_v1.1.0.txt

    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.1.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- README.txt --
    We will add the package example.net/pkgadded/subpkg in v1.2.0.
    -- pkgadded.go --
    // Package pkgadded was added in v1.1.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 387 bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/list-with-istio.conflist.golden

            }
          },
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    					mismatchNotes = append(mismatchNotes, fmt.Sprintf("Route to non-matching subset %s for (%s)",
    						dest.Destination.Subset,
    						renderMatches(route.Match)))
    					continue
    				}
    				if !slices.Contains(matchingSubsets, dest.Destination.Subset) {
    					if dr == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/match/matchers.go

    }
    
    // NotExternal is equivalent to Not(External)
    var NotExternal = Not(External)
    
    // Naked matches instances with any subset marked with SidecarInject equal to false.
    var Naked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsNaked()
    }
    
    // AllNaked matches instances where every subset has SidecarInject set to false.
    var AllNaked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsAllNaked()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top