Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 217 for sftp (0.1 sec)

  1. src/log/syslog/syslog.go

    	"log"
    	"net"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    // The Priority is a combination of the syslog facility and
    // severity. For example, [LOG_ALERT] | [LOG_FTP] sends an alert severity
    // message from the FTP facility. The default severity is [LOG_EMERG];
    // the default facility is [LOG_KERN].
    type Priority int
    
    const severityMask = 0x07
    const facilityMask = 0xf8
    
    const (
    	// Severity.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        }
    
        protected String convertCrawlingPath(final String path) {
            if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:")
                    || path.startsWith("ftp:") || path.startsWith("storage:")) {
                return path;
            }
    
            if (path.startsWith("www.")) {
                return "http://" + path;
            }
    
            if (path.startsWith("//")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/discovery/v1beta1/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: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                    stream(crawlingConfig.getPermissions()).of(stream -> stream.forEach(p -> roleTypeList.add(p)));
                    if (url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:")) {
                        if (url.endsWith("/")) {
                            // directory
                            return true;
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected static final String BAD_URLS = "bad_urls";
    
        protected String[] webProtocols = { "http:", "https:" };
    
        protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" };
    
        protected LinkedList<String> tagQueue;
    
        protected List<LabelType> labelList;
    
        protected LabelType labelType;
    
        protected Map<String, String> globalParams = new HashMap<>();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    var destAddrLookupRegexp = regexp.MustCompile(`^ip6* daddr (!= )?\{([^}]*)\}`)
    var destAddrLocalRegexp = regexp.MustCompile(`^fib daddr type local`)
    var destPortRegexp = regexp.MustCompile(`^(tcp|udp|sctp) dport (\d+)`)
    var destIPOnlyLookupRegexp = regexp.MustCompile(`^ip6* daddr @(\S+)`)
    
    var destDispatchRegexp = regexp.MustCompile(`^ip6* daddr \. meta l4proto \. th dport vmap @(\S+)$`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top