Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 217 for sftp (0.08 sec)

  1. src/main/resources/fess_config.properties

    crawler.document.fullstop.chars=u002eu06d4u2e3cu3002
    crawler.crawling.data.encoding=UTF-8
    crawler.web.protocols=http,https
    crawler.file.protocols=file,smb,smb1,ftp,storage
    crawler.data.env.param.key.pattern=^FESS_ENV_.*
    crawler.ignore.robots.txt=false
    crawler.ignore.robots.tags=false
    crawler.ignore.content.exception=true
    crawler.failure.url.status.codes=404
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/ipset/ipset.go

    	IP string
    	// Port is the entry's Port.
    	Port int
    	// Protocol is the entry's Protocol.  The protocols of entries in the same ip set are all
    	// the same.  The accepted protocols are TCP, UDP and SCTP.
    	Protocol string
    	// Net is the entry's IP network address.  Network address with zero prefix size can NOT
    	// be stored.
    	Net string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/go/build/deps_test.go

    	< internal/pkgbits
    	< go/internal/gcimporter, go/internal/gccgoimporter, go/internal/srcimporter
    	< go/importer;
    
    	NET, crypto/rand, mime/quotedprintable
    	< mime/multipart;
    
    	crypto/tls
    	< net/smtp;
    
    	crypto/rand
    	< hash/maphash; # for purego implementation
    
    	# HTTP, King of Dependencies.
    
    	FMT
    	< golang.org/x/net/http2/hpack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/go/doc/comment/parse.go

    // before further processing.
    func autoURL(s string) (url string, ok bool) {
    	// Find the ://. Fast path to pick off non-URL,
    	// since we call this at every position in the string.
    	// The shortest possible URL is ftp://x, 7 bytes.
    	var i int
    	switch {
    	case len(s) < 7:
    		return "", false
    	case s[3] == ':':
    		i = 3
    	case s[4] == ':':
    		i = 4
    	case s[5] == ':':
    		i = 5
    	case s[6] == ':':
    		i = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  5. src/time/zoneinfo_read.go

    // Parse "zoneinfo" time zone file.
    // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"errors"
    	"internal/bytealg"
    	"runtime"
    	"syscall"
    	_ "unsafe" // for linkname
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/runtime/mkpreempt.go

    	for i := 0; i < 26; i += 2 {
    		if i == 18 {
    			i--
    			continue // R18 is not used, skip
    		}
    		reg := fmt.Sprintf("(R%d, R%d)", i, i+1)
    		l.add2("STP", "LDP", reg, 16)
    	}
    	// Add flag registers.
    	l.addSpecial(
    		"MOVD NZCV, R0\nMOVD R0, %d(RSP)",
    		"MOVD %d(RSP), R0\nMOVD R0, NZCV",
    		8)
    	l.addSpecial(
    		"MOVD FPSR, R0\nMOVD R0, %d(RSP)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// port is the port number of the ingress port.
    	Port int32 `json:"port" protobuf:"varint,1,opt,name=port"`
    
    	// protocol is the protocol of the ingress port.
    	// The supported values are: "TCP", "UDP", "SCTP"
    	Protocol v1.Protocol `json:"protocol" protobuf:"bytes,2,opt,name=protocol,casttype=Protocol"`
    
    	// error is to record the problem with the service port
    	// The format of the error shall comply with the following rules:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    			Ports:     []v1.EndpointPort{{Port: 1000, Protocol: "SCTP"}},
    		}},
    	})
    	addPods(endpoints.podStore, ns, 1, 1, 0, ipv4only)
    	endpoints.serviceStore.Add(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: ns},
    		Spec: v1.ServiceSpec{
    			Selector: map[string]string{},
    			Ports:    []v1.ServicePort{{Port: 80, TargetPort: intstr.FromInt32(8080), Protocol: "SCTP"}},
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. src/net/textproto/reader.go

    // decoded text of a dot-encoded block read from r.
    // The returned Reader is only valid until the next call
    // to a method on r.
    //
    // Dot encoding is a common framing used for data blocks
    // in text protocols such as SMTP.  The data consists of a sequence
    // of lines, each of which ends in "\r\n".  The sequence itself
    // ends at a line containing just a dot: ".\r\n".  Lines beginning
    // with a dot are escaped with an additional dot to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top