Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 88 of 88 for sftp (0.28 sec)

  1. pkg/apis/core/validation/validation_test.go

    			[]core.ContainerPort{{ContainerPort: 80, Protocol: "tcp"}},
    			field.ErrorTypeNotSupported,
    			"protocol", `supported values: "SCTP", "TCP", "UDP"`,
    		},
    		"invalid protocol": {
    			[]core.ContainerPort{{ContainerPort: 80, Protocol: "ICMP"}},
    			field.ErrorTypeNotSupported,
    			"protocol", `supported values: "SCTP", "TCP", "UDP"`,
    		},
    		"protocol required": {
    			[]core.ContainerPort{{Name: "abc", ContainerPort: 80}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        if ! gcloud compute firewall-rules create "$1" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-ranges "$2" \
          --target-tags "$3" \
          --allow tcp,udp,icmp,esp,ah,sctp; then
          if (( attempt > 4 )); then
            echo -e "${color_red}Failed to create firewall rule $1 ${color_norm}" >&2
            exit 2
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    	}{
    		{"empty", &extensions.WasmPlugin{}, "url field needs to be set", ""},
    		{"invalid message", &networking.Server{}, "cannot cast", ""},
    		{
    			"wrong scheme",
    			&extensions.WasmPlugin{
    				Url: "ftp://test.com/test",
    			},
    			"unsupported scheme", "",
    		},
    		{
    			"valid http",
    			&extensions.WasmPlugin{
    				Url: "http://test.com/test",
    			},
    			"", "",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

              "type": "string"
            },
            "protocol": {
              "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
    - 3.1M bytes
    - Viewed (0)
  5. api/openapi-spec/v3/api__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 May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. 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)
  7. api/openapi-spec/v3/apis__apps__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 May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/opGen.go

    				{0, 9223372038733561855}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 g R30 SP SB
    			},
    		},
    	},
    	{
    		name:           "STP",
    		auxType:        auxSymOff,
    		argLen:         4,
    		faultOnNilArg0: true,
    		symEffect:      SymWrite,
    		asm:            arm64.ASTP,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top