Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 602 for subst (0.45 sec)

  1. pkg/test/datasets/validation/dataset/networking-v1beta1-VirtualService.yaml

    kind: VirtualService
    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 303 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. 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)
  4. pilot/pkg/networking/core/cluster_builder.go

    }
    
    func (cb *ClusterBuilder) buildSubsetCluster(
    	opts buildClusterOpts, destRule *config.Config, subset *networking.Subset, service *model.Service,
    	endpointBuilder *endpoints.EndpointBuilder,
    ) *cluster.Cluster {
    	opts.serviceMTLSMode = cb.req.Push.BestEffortInferServiceMTLSMode(subset.GetTrafficPolicy(), service, opts.port)
    	var subsetClusterName string
    	var defaultSni string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller.go

    			// addresses
    			subset.Addresses = addressSubset(subset.Addresses, toBeAdded)
    			subset.NotReadyAddresses = []v1.EndpointAddress{}
    			canBeAdded -= len(subset.Addresses)
    		} else {
    			// Only truncate the not ready addresses
    			subset.NotReadyAddresses = addressSubset(subset.NotReadyAddresses, toBeAdded)
    			canBeAdded -= len(subset.NotReadyAddresses)
    		}
    		endpoints.Subsets[i] = subset
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate_test.go

    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
            weight: 25`
    	validVirtualServiceJSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

       * boolean, Object, boolean)} method. If you override {@link #subSet(Object, boolean, Object,
       * boolean)}, you may wish to override {@link #subSet(Object, Object)} to forward to this
       * implementation.
       */
      @Override
      protected SortedSet<E> standardSubSet(
          @ParametricNullness E fromElement, @ParametricNullness E toElement) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pkg/maps/maps.go

    	maps.Copy(dst, override)
    	return dst
    }
    
    // Contains checks if all key-value pairs in 'subset' are present in 'superset'.
    // It returns true only if every key in 'subset' exists in 'superset' and their corresponding values are equal.
    func Contains[M1, M2 ~map[K]V, K comparable, V comparable](superset M1, subset M2) bool {
    	for key, value := range subset {
    		if supersetValue, ok := superset[key]; !ok || supersetValue != value {
    			return false
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 22:48:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/math/log_amd64.s

    	MOVSD   $Ln2Lo, X4
    	MULSD   X1, X4 // x4= k*Ln2Lo
    	ADDSD   X4, X3 // x0= hfsq, x1= k, x2= f, x3= s*(hfsq+R)+k*Ln2Lo
    	SUBSD   X3, X0 // x0= hfsq-(s*(hfsq+R)+k*Ln2Lo), x1= k, x2= f
    	SUBSD   X2, X0 // x0= (hfsq-(s*(hfsq+R)+k*Ln2Lo))-f, x1= k
    	MULSD   $Ln2Hi, X1 // x0= (hfsq-(s*(hfsq+R)+k*Ln2Lo))-f, x1= k*Ln2Hi
    	SUBSD   X0, X1 // x1= k*Ln2Hi-((hfsq-(s*(hfsq+R)+k*Ln2Lo))-f)
    	MOVSD   X1, ret+8(FP)
    	RET
    isInfOrNaN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/clusters.go

    		return true
    	}, exclude(excluded...))
    }
    
    // Configs returns the subset that are config clusters.
    func (c Clusters) Configs(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsConfig()
    	}, exclude(excluded...))
    }
    
    // Remotes returns the subset that are remote clusters.
    func (c Clusters) Remotes(excluded ...Cluster) Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top