Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for sftp (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.23.md

    - github.com/google/martian/v3: [v3.1.0](https://github.com/google/martian/v3/tree/v3.1.0)
    - github.com/kr/fs: [v0.1.0](https://github.com/kr/fs/tree/v0.1.0)
    - github.com/pkg/sftp: [v1.10.1](https://github.com/pkg/sftp/tree/v1.10.1)
    - github.com/spaolacci/murmur3: [f09979e](https://github.com/spaolacci/murmur3/tree/f09979e)
    - sigs.k8s.io/json: c049b76
    
    ### Changed
    - cloud.google.com/go/bigquery: v1.4.0 → v1.8.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.26.md

    - github.com/lpabon/godbc: [v0.1.1](https://github.com/lpabon/godbc/tree/v0.1.1)
    - github.com/mvdan/xurls: [v1.1.0](https://github.com/mvdan/xurls/tree/v1.1.0)
    - github.com/pkg/sftp: [v1.10.1](https://github.com/pkg/sftp/tree/v1.10.1)
    - github.com/remyoudompheng/bigfft: [52369c6](https://github.com/remyoudompheng/bigfft/tree/52369c6)
    - github.com/russross/blackfriday: [v1.5.2](https://github.com/russross/blackfriday/tree/v1.5.2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	FRNDINT:         "FRNDINT",
    	FRSTOR:          "FRSTOR",
    	FSCALE:          "FSCALE",
    	FSIN:            "FSIN",
    	FSINCOS:         "FSINCOS",
    	FSQRT:           "FSQRT",
    	FST:             "FST",
    	FSTP:            "FSTP",
    	FSUB:            "FSUB",
    	FSUBP:           "FSUBP",
    	FSUBR:           "FSUBR",
    	FSUBRP:          "FSUBRP",
    	FTST:            "FTST",
    	FUCOM:           "FUCOM",
    	FUCOMI:          "FUCOMI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    					Name:     "dns-sctp",
    					Port:     53,
    					Protocol: v1.ProtocolSCTP,
    				},
    			}
    		}),
    	)
    
    	populateEndpointSlices(fp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. prow/config/calico.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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

    - SCTP support in API objects (Pod, Service, NetworkPolicy) is now GA.
      Note that this has no effect on whether SCTP is enabled on nodes at the kernel level,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    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"
    )
    
    // Represents a Persistent Disk resource in Google Compute Engine.
    //
    // A GCE PD must exist before mounting to a container. The disk must
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // Number of port to expose on the pod's IP address.
      // This must be a valid port number, 0 < x < 65536.
      optional int32 containerPort = 3;
    
      // Protocol for port. Must be UDP, TCP, or SCTP.
      // Defaults to "TCP".
      // +optional
      // +default="TCP"
      optional string protocol = 4;
    
      // What host IP to bind the external port to.
      // +optional
      optional string hostIP = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    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"
    )
    
    // GCEPersistentDiskVolumeSource represents a Persistent Disk resource in Google Compute Engine.
    //
    // A GCE PD must exist before mounting to a container. The disk must
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"containerPort": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
    	"protocol":      "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
    	"hostIP":        "What host IP to bind the external port to.",
    }
    
    func (ContainerPort) SwaggerDoc() map[string]string {
    	return map_ContainerPort
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top