Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for sftp (0.1 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"port":     "port is the port number of the ingress port.",
    	"protocol": "protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                            apply to certain protocols). \n Must be one of these string
                            values: \"TCP\", \"UDP\", \"ICMP\", \"ICMPv6\", \"SCTP\",
                            \"UDPLite\" or an integer in the range 1-255."
                          pattern: ^.*
                          x-kubernetes-int-or-string: true
                        source:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  3. pkg/apis/discovery/validation/validation_test.go

    					Protocol: protocolPtr(api.ProtocolTCP),
    				}, {
    					Name:     utilpointer.String("udp"),
    					Protocol: protocolPtr(api.ProtocolUDP),
    				}, {
    					Name:     utilpointer.String("sctp"),
    					Protocol: protocolPtr(api.ProtocolSCTP),
    				}},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: generateIPAddresses(1),
    					Hostname:  utilpointer.String("valid-123"),
    				}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    message IngressPortStatus {
      // port is the port number of the ingress port.
      optional int32 port = 1;
    
      // protocol is the protocol of the ingress port.
      // The supported values are: "TCP", "UDP", "SCTP"
      optional string protocol = 2;
    
      // error is to record the problem with the service port
      // The format of the error shall comply with the following rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    message IngressPortStatus {
      // port is the port number of the ingress port.
      optional int32 port = 1;
    
      // protocol is the protocol of the ingress port.
      // The supported values are: "TCP", "UDP", "SCTP"
      optional string protocol = 2;
    
      // error is to record the problem with the service port
      // The format of the error shall comply with the following rules:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	//TODO STNP 0x108(R3), ZR, R7              // 67fc10a8
    	LDP.P -384(R3), (R22, R26)                 // 7668e8a8
    	LDP.W 280(R8), (R19, R11)                  // 13add1a9
    	STP.P (R22, R27), 352(R0)                  // 166c96a8
    	STP.W (R17, R11), 96(R8)                   // 112d86a9
    	MOVW.P R20, -28(R1)                        // 34441eb8
    	MOVD.P R17, 191(R16)                       // 11f60bf8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    crawler.document.fullstop.chars=u002eu06d4u2e3cu3002
    crawler.crawling.data.encoding=UTF-8
    crawler.web.protocols=http,https
    crawler.file.protocols=file,smb,smb1,ftp,storage
    crawler.data.env.param.key.pattern=^FESS_ENV_.*
    crawler.ignore.robots.txt=false
    crawler.ignore.robots.tags=false
    crawler.ignore.content.exception=true
    crawler.failure.url.status.codes=404
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/go/build/deps_test.go

    	< internal/pkgbits
    	< go/internal/gcimporter, go/internal/gccgoimporter, go/internal/srcimporter
    	< go/importer;
    
    	NET, crypto/rand, mime/quotedprintable
    	< mime/multipart;
    
    	crypto/tls
    	< net/smtp;
    
    	crypto/rand
    	< hash/maphash; # for purego implementation
    
    	# HTTP, King of Dependencies.
    
    	FMT
    	< golang.org/x/net/http2/hpack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset.go

    	IP string
    	// Port is the entry's Port.
    	Port int
    	// Protocol is the entry's Protocol.  The protocols of entries in the same ip set are all
    	// the same.  The accepted protocols are TCP, UDP and SCTP.
    	Protocol string
    	// Net is the entry's IP network address.  Network address with zero prefix size can NOT
    	// be stored.
    	Net string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. src/go/doc/comment/parse.go

    // before further processing.
    func autoURL(s string) (url string, ok bool) {
    	// Find the ://. Fast path to pick off non-URL,
    	// since we call this at every position in the string.
    	// The shortest possible URL is ftp://x, 7 bytes.
    	var i int
    	switch {
    	case len(s) < 7:
    		return "", false
    	case s[3] == ':':
    		i = 3
    	case s[4] == ':':
    		i = 4
    	case s[5] == ':':
    		i = 5
    	case s[6] == ':':
    		i = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top