Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for sftp (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        boolean isFileRoleFromFile();
    
        /**
         * Get the value for the key 'ftp.role.from.file'. <br>
         * The value is, e.g. true <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getFtpRoleFromFile();
    
        /**
         * Is the property for the key 'ftp.role.from.file' true? <br>
         * The value is, e.g. true <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  7. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - github.com/grpc-ecosystem/grpc-gateway/v2: [v2.7.0 → v2.16.0](https://github.com/grpc-ecosystem/grpc-gateway/v2/compare/v2.7.0...v2.16.0)
    - github.com/ishidawataru/sctp: [7c296d4 → 7ff4192](https://github.com/ishidawataru/sctp/compare/7c296d4...7ff4192)
    - github.com/konsorten/go-windows-terminal-sequences: [v1.0.3 → v1.0.1](https://github.com/konsorten/go-windows-terminal-sequences/compare/v1.0.3...v1.0.1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		} else {
    			s.Fatalf("weird complex conversion %v -> %v", ft, tt)
    		}
    		ftp := types.FloatForComplex(ft)
    		ttp := types.FloatForComplex(tt)
    		return s.newValue2(ssa.OpComplexMake, tt,
    			s.newValueOrSfCall1(op, ttp, s.newValue1(ssa.OpComplexReal, ftp, v)),
    			s.newValueOrSfCall1(op, ttp, s.newValue1(ssa.OpComplexImag, ftp, v)))
    	}
    
    	if tt.IsComplex() { // and ft is not complex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "protocol": {
                "default": "TCP",
                "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
                "type": "string"
              }
            },
            "required": [
              "containerPort"
            ],
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top