Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 114 of 114 for sftp (0.06 sec)

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

      // * must start and end with an alphanumeric character.
      // Default is empty string.
      optional string name = 1;
    
      // protocol represents the IP protocol for this port.
      // Must be UDP, TCP, or SCTP.
      // Default is TCP.
      optional string protocol = 2;
    
      // port represents the port number of the endpoint.
      // If this is not specified, ports are not restricted and must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/log/syslog/syslog.go

    	"log"
    	"net"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    // The Priority is a combination of the syslog facility and
    // severity. For example, [LOG_ALERT] | [LOG_FTP] sends an alert severity
    // message from the FTP facility. The default severity is [LOG_EMERG];
    // the default facility is [LOG_KERN].
    type Priority int
    
    const severityMask = 0x07
    const facilityMask = 0xf8
    
    const (
    	// Severity.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1/types.go

    	// Default is empty string.
    	Name *string `json:"name,omitempty" protobuf:"bytes,1,name=name"`
    
    	// protocol represents the IP protocol for this port.
    	// Must be UDP, TCP, or SCTP.
    	// Default is TCP.
    	Protocol *v1.Protocol `json:"protocol,omitempty" protobuf:"bytes,2,name=protocol"`
    
    	// port represents the port number of the endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// Default is empty string.
    	Name *string `json:"name,omitempty" protobuf:"bytes,1,name=name"`
    
    	// protocol represents the IP protocol for this port.
    	// Must be UDP, TCP, or SCTP.
    	// Default is TCP.
    	Protocol *v1.Protocol `json:"protocol,omitempty" protobuf:"bytes,2,name=protocol"`
    
    	// port represents the port number of the endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top