Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 795 for Destinations (0.34 sec)

  1. src/encoding/binary/binary_test.go

    }
    
    func testReadInvalidDestination(t *testing.T, order ByteOrder) {
    	destinations := []any{
    		int8(0),
    		int16(0),
    		int32(0),
    		int64(0),
    
    		uint8(0),
    		uint16(0),
    		uint32(0),
    		uint64(0),
    
    		bool(false),
    	}
    
    	for _, dst := range destinations {
    		err := Read(bytes.NewReader([]byte{1, 2, 3, 4, 5, 6, 7, 8}), order, dst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    func (e *edgeState) process() {
    	dsts := e.destinations
    
    	// Process the destinations until they are all satisfied.
    	for len(dsts) > 0 {
    		i := 0
    		for _, d := range dsts {
    			if !e.processDest(d.loc, d.vid, d.splice, d.pos) {
    				// Failed - save for next iteration.
    				dsts[i] = d
    				i++
    			}
    		}
    		if i < len(dsts) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    					mismatchNotes = append(mismatchNotes, fmt.Sprintf("Route to non-matching subset %s for (%s)",
    						dest.Destination.Subset,
    						renderMatches(route.Match)))
    					continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/apis/networking/types.go

    	// +optional
    	Ports []NetworkPolicyPort
    
    	// 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: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"ports": "ports is a 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
    - 23.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters_test.go

    					echotest.New(t, all).
    						WithDefaultFilters(1, 1).
    						Run(func(ctx framework.TestContext, from echo.Instance, to echo.Target) {
    							// TODO if the destinations would change based on which cluster then add cluster to srCkey
    							fromKey := from.Config().ClusterLocalFQDN()
    							toKey := to.Config().ClusterLocalFQDN()
    							if testTopology[fromKey] == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top