Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 795 for Destinations (0.17 sec)

  1. staging/src/k8s.io/api/networking/v1/types.go

    	Ports []NetworkPolicyPort `json:"ports,omitempty" protobuf:"bytes,1,rep,name=ports"`
    
    	// to is a 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 May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. src/runtime/map_fast64.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    		return errors.New("IPVS virtual service does not exist")
    	}
    
    	// curEndpoints represents IPVS destinations listed from current system.
    	curEndpoints := sets.New[string]()
    	curDests, err := proxier.ipvs.GetRealServers(appliedVirtualServer)
    	if err != nil {
    		proxier.logger.Error(err, "Failed to list IPVS destinations")
    		return err
    	}
    	for _, des := range curDests {
    		curEndpoints.Insert(des.String())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    	// CDS, we simply have to find the matching service and return the
    	// destination rule.
    	destinationRules        map[host.Name][]*ConsolidatedDestRule
    	destinationRulesByNames map[types.NamespacedName]*config.Config
    
    	// OutboundTrafficPolicy defines the outbound traffic policy for this sidecar.
    	// If OutboundTrafficPolicy is ALLOW_ANY traffic to unknown destinations will
    	// be forwarded.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. src/runtime/map_fast32.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*4)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/runtime/map_faststr.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*2*goarch.PtrSize)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top