Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for sftp (0.1 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.104",
    						Port:     3001,
    						Protocol: "SCTP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.104"),
    						Protocol:  "SCTP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.105",
    						Port:     3001,
    						Protocol: "SCTP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    		(MOVDstore ptr (MOVDconst [0]) mem))
    (Zero [16] ptr mem) =>
    	(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem)
    
    (Zero [32] ptr mem) =>
    	(STP [16] ptr (MOVDconst [0]) (MOVDconst [0])
    		(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem))
    
    (Zero [48] ptr mem) =>
    	(STP [32] ptr (MOVDconst [0]) (MOVDconst [0])
    		(STP [16] ptr (MOVDconst [0]) (MOVDconst [0])
    			(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/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: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    		}
    		v := c.regoff(&p.From)
    		o1 = c.opldpstp(p, o, v, rf, rt1, rt2, 1)
    
    	case 67: /* stp (r1, r2), O(R)!; stp (r1, r2), (R)O! */
    		rt, rf1, rf2 := p.To.Reg, p.From.Reg, int16(p.From.Offset)
    		if rt == obj.REG_NONE {
    			rt = o.param
    		}
    		if rt == obj.REG_NONE {
    			c.ctxt.Diag("invalid stp destination: %v\n", p)
    		}
    		v := c.regoff(&p.To)
    		o1 = c.opldpstp(p, o, v, rt, rf1, rf2, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
        iptables -w -A INPUT -w -p UDP -j ACCEPT
        iptables -w -A INPUT -w -p ICMP -j ACCEPT
        iptables -w -A INPUT -w -p SCTP -j ACCEPT
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

      @Test
      fun invalidScheme() {
        val requestBuilder = Request.Builder()
        assertFailsWith<IllegalArgumentException> {
          requestBuilder.url("ftp://hostname/path")
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Expected URL scheme 'http' or 'https' but was 'ftp'")
        }
      }
    
      @Test
      fun invalidPort() {
        val requestBuilder = Request.Builder()
        assertFailsWith<IllegalArgumentException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Type, Cluster-IP, External-IP, Port(s), Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"service2", "LoadBalancer", "1.3.4.5", "<pending>", "80/TCP,8090/UDP,8000/TCP,7777/SCTP", "<unknown>"}}},
    		},
    		// Test load balancer service with multiple ports.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Samba */
        public static final String LABELS_file_auth_scheme_samba = "{labels.file_auth_scheme_samba}";
    
        /** The key of the message: FTP */
        public static final String LABELS_file_auth_scheme_ftp = "{labels.file_auth_scheme_ftp}";
    
        /** The key of the message: {0}/{1} ({2} items) */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "protocol": {
                "description": "protocol represents the IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
                "type": "string"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "io.k8s.api.discovery.v1.EndpointSlice": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  10. 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)
Back to top