Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 255 for subset16 (2.5 sec)

  1. src/go/types/termlist.go

    	for _, x := range xl {
    		if y.subsetOf(x) {
    			return true
    		}
    	}
    	return false
    }
    
    // subsetOf reports whether xl ⊆ yl.
    func (xl termlist) subsetOf(yl termlist) bool {
    	if yl.isEmpty() {
    		return xl.isEmpty()
    	}
    
    	// each term x of xl must be a subset of yl
    	for _, x := range xl {
    		if !yl.supersetOf(x) {
    			return false // x is not a subset yl
    		}
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

    {{- $subsets := .Subsets }}
    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $.Service }}-{{ $subset.Version }}
    spec:
      replicas: 1
      selector:
        matchLabels:
          istio.io/test-vm: {{ $.Service }}
          istio.io/test-vm-version: {{ $subset.Version }}
      template:
        metadata:
          annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-no-tls.yaml

            host: "multiversion"
            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "multiversion"
            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "multiversion"
      annotations:
        test-suite: "automtls-partial-sidecar-dr-no-tls"
    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 996 bytes
    - Viewed (0)
  4. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-disable.yaml

            host: "multiversion"
            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "multiversion"
            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "multiversion"
      annotations:
        test-suite: "automtls-partial-dr-disable"
    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tests/testdata/config/rule-regex-route.yaml

                regex: "b.*"
            sourceLabels:
              version: v1
          route:
          - destination:
              host: regex.extsvc.com
              subset: v2
            weight: 100
        - route:
          - destination:
              host: regex.extsvc.com
              subset: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. tests/testdata/config/rule-weighted-route.yaml

    spec:
      hosts:
        - c-weighted.extsvc.com
      http:
        - route:
          - destination:
              host: c-weighted.extsvc.com
              subset: v1
            weight: 75
          - destination:
              host: c-weighted.extsvc.com
              subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_route_rule_no_effects_ingress.yaml

      namespace: default
    spec:
      hosts:
      - ratings
      http:
      - route:
        - destination:
            host: ratings
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: ratings
      namespace: default
    spec:
      host: ratings
      subsets:
      - name: v1
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. tests/testdata/config/rule-websocket-route.yaml

          labels:
            version: v1
    
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: websocket
      namespace: testns
    spec:
      host: websocket.test.istio.io
      subsets:
        - name: v1
          labels:
            version: v1
    
    
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: websocket-route
      namespace: testns
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/endpointsadapter.go

    	if len(endpoints.Subsets) > 0 {
    		subset := endpoints.Subsets[0]
    		for i := range subset.Ports {
    			endpointSlice.Ports = append(endpointSlice.Ports, discovery.EndpointPort{
    				Port:     &subset.Ports[i].Port,
    				Name:     &subset.Ports[i].Name,
    				Protocol: &subset.Ports[i].Protocol,
    			})
    		}
    
    		if allAddressesIPv6(append(subset.Addresses, subset.NotReadyAddresses...)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    		return nil, err
    	}
    	if len(eps.Subsets) == 0 {
    		return nil, errors.NewServiceUnavailable(fmt.Sprintf("no endpoints available for service %q", svc.Name))
    	}
    
    	// Pick a random Subset to start searching from.
    	ssSeed := rand.Intn(len(eps.Subsets))
    
    	// Find a Subset that has the port.
    	for ssi := 0; ssi < len(eps.Subsets); ssi++ {
    		ss := &eps.Subsets[(ssSeed+ssi)%len(eps.Subsets)]
    		if len(ss.Addresses) == 0 {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top