Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for sftp (0.04 sec)

  1. helm/minio/values.yaml

    ## flux, so set to "true" to disable this behaviour.
    ignoreChartChecksums: false
    
    ## Additional arguments to pass to minio binary
    extraArgs: []
    # example for enabling FTP:
    #   - --ftp=\"address=:8021\"
    #   - --ftp=\"passive-port-range=10000-10010\"
    
    ## Additional volumes to minio container
    extraVolumes: []
    
    ## Additional volumeMounts to minio container
    extraVolumeMounts: []
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
    
            final boolean isSmbUrl = url.startsWith("smb:") || url.startsWith("smb1:");
            final boolean isFtpUrl = url.startsWith("ftp:");
            final boolean isSmbOrFtpUrl = isSmbUrl || isFtpUrl;
    
            // replacing url with mapping data
            url = ComponentUtil.getPathMappingHelper().replaceUrl(url);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. src/net/lookup_windows_test.go

    		pref, _, _ := dtoi(ans[2])
    		mx = append(mx, &MX{absDomainName(ans[3]), uint16(pref)})
    	}
    	// windows nslookup syntax
    	// gmail.com       MX preference = 30, mail exchanger = alt3.gmail-smtp-in.l.google.com
    	rx = regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+MX preference\s*=\s*([0-9]+)\s*,\s*mail exchanger\s*=\s*([a-z0-9.\-]+)$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		pref, _, _ := dtoi(ans[2])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://somehost:9090/somepath")));
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "ftp://somehost")));
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://192.168.101.1")));
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://")));
            // these are local
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/types.go

    	// Default is empty string.
    	Name *string `json:"name,omitempty" protobuf:"bytes,1,name=name"`
    
    	// protocol represents the IP protocol for this port.
    	// Must be UDP, TCP, or SCTP.
    	// Default is TCP.
    	Protocol *v1.Protocol `json:"protocol,omitempty" protobuf:"bytes,2,name=protocol"`
    
    	// port represents the port number of the endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    		{name: "STP", argLength: 4, reg: gpstore2, aux: "SymOff", asm: "STP", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},         // store 16 bytes of arg1 and arg2 to arg0 + auxInt + aux.  arg3=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/net/lookup.go

    var services = map[string]map[string]int{
    	"udp": {
    		"domain": 53,
    	},
    	"tcp": {
    		"ftp":         21,
    		"ftps":        990,
    		"gopher":      70, // ʕ◔ϖ◔ʔ
    		"http":        80,
    		"https":       443,
    		"imap2":       143,
    		"imap3":       220,
    		"imaps":       993,
    		"pop3":        110,
    		"pop3s":       995,
    		"smtp":        25,
    		"submissions": 465,
    		"ssh":         22,
    		"telnet":      23,
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. pkg/proxy/servicechangetracker_test.go

    		},
    		{
    			desc:     "headless sctp service",
    			ipFamily: v1.IPv4Protocol,
    
    			service: makeTestService("ns2", "headless", func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeClusterIP
    				svc.Spec.ClusterIP = v1.ClusterIPNone
    				svc.Spec.Ports = addTestPort(svc.Spec.Ports, "sip", "SCTP", 7777, 0, 0)
    			}),
    			expected: map[ServicePortName]*BaseServicePortInfo{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/net/url/url_test.go

    			RawFragment: "file%20one%26two",
    		},
    		"",
    	},
    	// user
    	{
    		"ftp://******@****.***/",
    		&URL{
    			Scheme: "ftp",
    			User:   User("webmaster"),
    			Host:   "www.google.com",
    			Path:   "/",
    		},
    		"",
    	},
    	// escape sequence in username
    	{
    		"ftp://******@****.***/",
    		&URL{
    			Scheme: "ftp",
    			User:   User("john doe"),
    			Host:   "www.google.com",
    			Path:   "/",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top