Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 983 for Destinations (0.16 sec)

  1. staging/src/k8s.io/api/networking/v1/generated.proto

      // +listType=atomic
      repeated NetworkPolicyPort ports = 1;
    
      // 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 Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.io.OutputStream;
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * A {@link OutputEventListener} implementation which renders output events to various
     * destinations. This implementation is thread-safe.
     */
    @ThreadSafe
    public class OutputEventRenderer implements OutputEventListener, LoggingRouter {
        private final Object lock = new Object();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    		-A KUBE-EXT-4SW47YFZTEDKD3PK -j KUBE-SVC-4SW47YFZTEDKD3PK
    		-A KUBE-EXT-GNZBNJ2PO5MGZ6GT -m comment --comment "pod traffic for ns2/svc2:p80 external destinations" -s 10.0.0.0/8 -j KUBE-SVC-GNZBNJ2PO5MGZ6GT
    		-A KUBE-EXT-GNZBNJ2PO5MGZ6GT -m comment --comment "masquerade LOCAL traffic for ns2/svc2:p80 external destinations" -m addrtype --src-type LOCAL -j KUBE-MARK-MASQ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      repeated NetworkPolicyPort ports = 1;
    
      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top