Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 983 for Destinations (0.52 sec)

  1. src/slices/slices.go

    	//
    	//        v[2:]      v[:2]
    	//         |           |
    	// s: aaaavvvvbbbbbbbbvv
    	//        ^   ^       ^ ^
    	//        i   j  len(s) tot
    	//
    	// If either of those two destinations don't alias v, then we're good.
    	y := len(v) - (j - i) // length of y portion
    
    	if !overlaps(r[i:j], v) {
    		copy(r[i:j], v[y:])
    		copy(r[len(s):], v[:y])
    		rotateRight(r[i:], y)
    		return r
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"ports": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    func (lb *ListenerBuilder) GetDestinationCluster(destination *networking.Destination, service *model.Service, listenerPort int) string {
    	dir, subset, port := model.TrafficDirectionInboundVIP, "http", listenerPort
    	if destination.Subset != "" {
    		subset += "/" + destination.Subset
    	}
    	if destination.GetPort() != nil {
    		port = int(destination.GetPort().GetNumber())
    	} else if service != nil && len(service.Ports) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/likelyadjust.go

    				l := b2l[b.ID]
    				l0 := b2l[b0]
    				l1 := b2l[b1]
    
    				prediction := b.Likely
    				// Weak loop heuristic -- both source and at least one dest are in loops,
    				// and there is a difference in the destinations.
    				// TODO what is best arrangement for nested loops?
    				if l != nil && l0 != l1 {
    					noprediction := false
    					switch {
    					// prefer not to exit loops
    					case l1 == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	if subsetCluster == nil {
    		return nil
    	}
    
    	// Apply traffic policy for subset cluster with the destination rule traffic policy.
    	opts.mutable = subsetCluster
    	opts.istioMtlsSni = defaultSni
    
    	// If subset has a traffic policy, apply it so that it overrides the destination rule traffic policy.
    	opts.policy = util.MergeSubsetTrafficPolicy(opts.policy, subset.TrafficPolicy, opts.port)
    
    	if destRule != nil {
    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. pilot/pkg/networking/core/httproute_test.go

    		Gateways: []string{"mesh"},
    		Http: []*networking.HTTPRoute{
    			{
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "test-duplicate-domains.default",
    						},
    					},
    				},
    			},
    		},
    	}
    	virtualServiceSpecDuplicate := &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // +optional
      repeated NetworkPolicyPort ports = 1;
    
      // List of destinations for outgoing traffic of pods selected for this rule.
      // Items in this list are combined using a logical OR operation. If this field is
      // empty or missing, this rule matches all destinations (traffic not restricted by
      // destination). If this field is present and contains at least one item, this rule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated NetworkPolicyPort ports = 1;
    
      // List of destinations for outgoing traffic of pods selected for this rule.
      // Items in this list are combined using a logical OR operation. If this field is
      // empty or missing, this rule matches all destinations (traffic not restricted by
      // destination). If this field is present and contains at least one item, this rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	// Now group these Services by port so that we can infer the destination.port if the user
    	// doesn't specify any port for a multiport service. We need to know the destination port in
    	// order to build the cluster name (outbound|<port>|<subset>|<serviceFQDN>)
    	// If the destination service is being accessed on port X, we set that as the default
    	// destination port
    	serviceByPort := make(map[int][]*model.Service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	Ports []NetworkPolicyPort `json:"ports,omitempty" protobuf:"bytes,1,rep,name=ports"`
    
    	// List of destinations for outgoing traffic of pods selected for this rule.
    	// Items in this list are combined using a logical OR operation. If this field is
    	// empty or missing, this rule matches all destinations (traffic not restricted by
    	// destination). If this field is present and contains at least one item, this rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top