Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 571 for subsets2 (0.17 sec)

  1. pkg/config/host/names.go

    func (h Names) Intersection(other Names) Names {
    	result := make(Names, 0, len(h))
    	for _, hHost := range h {
    		for _, oHost := range other {
    			if hHost.SubsetOf(oHost) {
    				if !result.Contains(hHost) {
    					result = append(result, hHost)
    				}
    			} else if oHost.SubsetOf(hHost) {
    				if !result.Contains(oHost) {
    					result = append(result, oHost)
    				}
    			}
    		}
    	}
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// empty subset
    	if subsetName == "" {
    		return nil
    	}
    
    	if dr == nil {
    		return nil
    	}
    
    	for _, subset := range dr.Subsets {
    		if subset.Name == subsetName {
    			if len(subset.Labels) == 0 {
    				return nil
    			}
    			return subset.Labels
    		}
    	}
    
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. samples/bookinfo/networking/destination-rule-all.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: productpage
    spec:
      host: productpage
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: reviews
    spec:
      host: reviews
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 972 bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/cds.go

    	}
    	return resp
    }
    
    // newClusterFilter maps a non-subset cluster name to the list of actual cluster names (default or subset) actually
    // requested by the client. gRPC will usually request a group of clusters that are used in the same route; in some
    // cases this means subsets associated with the same default cluster aren't all expected in the same CDS response.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/config/host/name.go

    	}
    
    	// both are non-wildcards, so do normal string comparison
    	return n == o
    }
    
    // SubsetOf returns true if this hostname is a valid subset of the other hostname. The semantics are
    // the same as "Matches", but only in one direction (i.e., n is covered by o).
    func (n Name) SubsetOf(o Name) bool {
    	hWildcard := n.IsWildCarded()
    	oWildcard := o.IsWildCarded()
    
    	if hWildcard {
    		if oWildcard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/echos.go

    		Ports:                   ports.All(),
    		Subsets:                 []echo.SubsetConfig{{}},
    		Locality:                "region.zone.subzone",
    		IncludeExtAuthz:         c.IncludeExtAuthz,
    		DisableAutomountSAToken: disableAutomountSAToken,
    	}
    
    	b := echo.Config{
    		Service:         BSvc,
    		ServiceAccount:  true,
    		Ports:           ports.All(),
    		Subsets:         []echo.SubsetConfig{{}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns the set of all possible subsets of {@code set}. For example, {@code
       * powerSet(ImmutableSet.of(1, 2))} returns the set {@code {{}, {1}, {2}, {1, 2}}}.
       *
       * <p>Elements appear in these subsets in the same iteration order as they appeared in the input
       * set. The order in which these subsets appear in the outer set is undefined. Note that the power
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/setup_test.go

    proxyMetadata:
      WASM_INSECURE_REGISTRIES: %q`, registry.Address())
    	for _, e := range echos {
    		if e.Subsets[0].Annotations == nil {
    			e.Subsets[0].Annotations = map[string]string{}
    		}
    		if e.Service == "b" {
    			e.Subsets[0].Annotations[annotation.SidecarStatsHistogramBuckets.Name] = customBuckets
    		}
    		e.Subsets[0].Annotations[annotation.ProxyConfig.Name] = proxyMetadata
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_waypoint.go

    func (cb *ClusterBuilder) buildWaypointInboundVIPCluster(proxy *model.Proxy, svc *model.Service, port model.Port, subset string) *clusterWrapper {
    	clusterName := model.BuildSubsetKey(model.TrafficDirectionInboundVIP, subset, svc.Hostname, port.Port)
    
    	discoveryType := convertResolution(cb.proxyType, svc)
    	var lbEndpoints []*endpoint.LocalityLbEndpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter.go

    		for _, subset := range destinationRule.Subsets {
    			if subset.Name != subsetName {
    				continue
    			}
    			// If subset has load balancer - see if it is also consistent hash source IP
    			if subset.TrafficPolicy != nil && subset.TrafficPolicy.LoadBalancer != nil {
    				if subset.TrafficPolicy.LoadBalancer.GetConsistentHash() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top