Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 597 for subst (3.59 sec)

  1. pilot/pkg/networking/core/networkfilter_test.go

    			name: "tunneling_config should be applied when destination rule has specified tunnel settings for a subset matching the destination route subset",
    			routeDestinations: []*networking.RouteDestination{
    				{
    					Destination: &networking.Destination{
    						Host:   "tunnel-proxy.com",
    						Port:   &networking.PortSelector{Number: 3128},
    						Subset: "example-com-8443",
    					},
    				},
    			},
    			destinationRule: tunnelingEnabledForSubset,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  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. cmd/kubeadm/app/preflight/utils.go

    	}
    
    	cleanOutput := strings.TrimSpace(string(out))
    	subs := kubeletVersionRegex.FindAllStringSubmatch(cleanOutput, -1)
    	if len(subs) != 1 || len(subs[0]) < 2 {
    		return nil, errors.Errorf("Unable to parse output from Kubelet: %q", cleanOutput)
    	}
    	return version.ParseSemantic(subs[0][1])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 07:51:36 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top