Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for protocol1 (1.33 sec)

  1. prow/config/calico.yaml

                    items:
                      description: ProtoPort is combination of protocol, port, and CIDR.
                        Protocol and port must be specified.
                      properties:
                        net:
                          type: string
                        port:
                          type: integer
                        protocol:
                          type: string
                      required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                        : true)'
                    - message: tls must not be specified for protocols ['HTTP', 'TCP',
                        'UDP']
                      rule: 'self.all(l, l.protocol in [''HTTP'', ''TCP'', ''UDP''] ?
                        !has(l.tls) : true)'
                    - message: hostname must not be specified for protocols ['TCP', 'UDP']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    		lineStr = fmt.Sprintf(" (from line %d)", line)
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			protocol := strings.ToLower(string(tc.protocol))
    			if protocol == "" {
    				protocol = "tcp"
    			}
    			matches, output, masq := tracePacket(t, ipt, tc.sourceIP, protocol, tc.destIP, fmt.Sprintf("%d", tc.destPort), nodeIPs)
    			var errors []string
    			if output != tc.output {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  4. pkg/apis/core/types.go

    )
    
    // Protocol defines network protocols supported for things like container ports.
    type Protocol string
    
    const (
    	// ProtocolTCP is the TCP protocol.
    	ProtocolTCP Protocol = "TCP"
    	// ProtocolUDP is the UDP protocol.
    	ProtocolUDP Protocol = "UDP"
    	// ProtocolSCTP is the SCTP protocol.
    	ProtocolSCTP Protocol = "SCTP"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // Protocol defines network protocols supported for things like container ports.
    // +enum
    type Protocol string
    
    const (
    	// ProtocolTCP is the TCP protocol.
    	ProtocolTCP Protocol = "TCP"
    	// ProtocolUDP is the UDP protocol.
    	ProtocolUDP Protocol = "UDP"
    	// ProtocolSCTP is the SCTP protocol.
    	ProtocolSCTP Protocol = "SCTP"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // The port number of the endpoint.
      optional int32 port = 2;
    
      // The IP protocol for this port.
      // Must be UDP, TCP, or SCTP.
      // Default is TCP.
      // +optional
      optional string protocol = 3;
    
      // The application protocol for this port.
      // This is used as a hint for implementations to offer richer behavior for protocols that they understand.
      // This field follows standard Kubernetes label syntax.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"port":        "The port number of the endpoint.",
    	"protocol":    "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // The port number of the endpoint.
      optional int32 port = 2;
    
      // The IP protocol for this port.
      // Must be UDP, TCP, or SCTP.
      // Default is TCP.
      // +optional
      optional string protocol = 3;
    
      // The application protocol for this port.
      // This is used as a hint for implementations to offer richer behavior for protocols that they understand.
      // This field follows standard Kubernetes label syntax.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    			}
    		}
    		if len(port.Protocol) == 0 {
    			allErrs = append(allErrs, field.Required(idxPath.Child("protocol"), ""))
    		} else if !supportedPortProtocols.Has(port.Protocol) {
    			allErrs = append(allErrs, field.NotSupported(idxPath.Child("protocol"), port.Protocol, sets.List(supportedPortProtocols)))
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    				return 0, err
    			}
    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x12
    	}
    	if m.Protocol != nil {
    		i -= len(*m.Protocol)
    		copy(dAtA[i:], *m.Protocol)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Protocol)))
    		i--
    		dAtA[i] = 0xa
    	}
    	return len(dAtA) - i, nil
    }
    
    func (m *NetworkPolicySpec) Marshal() (dAtA []byte, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
Back to top