Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,136 for HOST (0.04 sec)

  1. src/net/http/cgi/host.go

    	port := "80"
    	if req.TLS != nil {
    		port = "443"
    	}
    	if matches := trailingPort.FindStringSubmatch(req.Host); len(matches) != 0 {
    		port = matches[1]
    	}
    
    	env := []string{
    		"SERVER_SOFTWARE=go",
    		"SERVER_PROTOCOL=HTTP/1.1",
    		"HTTP_HOST=" + req.Host,
    		"GATEWAY_INTERFACE=CGI/1.1",
    		"REQUEST_METHOD=" + req.Method,
    		"QUERY_STRING=" + req.URL.RawQuery,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/host-ipv4-loopback-cidr.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. pkg/config/host/names_test.go

    		},
    		{
    			host.Names{"foo.com"},
    			host.Names{},
    			host.Names{},
    		},
    		{
    			host.Names{},
    			host.Names{"bar.com"},
    			host.Names{},
    		},
    		{
    			host.Names{"*", "foo.com"},
    			host.Names{"foo.com"},
    			host.Names{"foo.com"},
    		},
    		{
    			host.Names{"*"},
    			host.Names{"foo.com"},
    			host.Names{"foo.com"},
    		},
    		{
    			host.Names{"foo.com"},
    			host.Names{"Foo.com"},
    			host.Names{},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar_test.go

    	{
    		"Retrieval of a plain host cookie.",
    		"http://www.host.test/",
    		[]string{"A=a"},
    		"A=a",
    		[]query{
    			{"http://www.host.test", "A=a"},
    			{"http://www.host.test/", "A=a"},
    			{"http://www.host.test/some/path", "A=a"},
    			{"https://www.host.test", "A=a"},
    			{"https://www.host.test/", "A=a"},
    			{"https://www.host.test/some/path", "A=a"},
    			{"ftp://www.host.test", ""},
    			{"ftp://www.host.test/", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. pkg/volume/testing/volume_host.go

    	host := &fakeAttachDetachVolumeHost{}
    	host.rootDir = rootDir
    	host.kubeClient = kubeClient
    	host.nodeName = nodeName
    	host.csiDriverLister = driverLister
    	host.volumeAttachmentLister = volumeAttachLister
    	host.mounter = mount.NewFakeMounter(nil)
    	host.hostUtil = hostutil.NewFakeHostUtil(pathToTypeMap)
    	host.exec = &testingexec.FakeExec{DisableScripts: true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

        @Override
        public InetAddress[] resolve(final String host) throws UnknownHostException {
            return InetAddress.getAllByName(toAscii(host));
        }
    
        protected String decode(final String host) {
            if (host.indexOf('%') == -1) {
                return host;
            }
            try {
                return URLDecoder.decode(host, encoding);
            } catch (final UnsupportedEncodingException e) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. cmd/endpoint.go

    			if endpoint.IsLocal && endpoint.Host != "" {
    				u := &url.URL{
    					Scheme: endpoint.Scheme,
    					Host:   endpoint.Host,
    				}
    				return u.String()
    			}
    		}
    	}
    	host := globalMinioHost
    	if host == "" {
    		host = sortIPs(localIP4.ToSlice())[0]
    	}
    	return fmt.Sprintf("%s://%s", getURLScheme(globalIsTLS), net.JoinHostPort(host, globalMinioPort))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/net/ipsock.go

    // IPv6 addresses, then JoinHostPort returns "[host]:port".
    //
    // See func Dial for a description of the host and port parameters.
    func JoinHostPort(host, port string) string {
    	// We assume that host is a literal IPv6 address if host has
    	// colons.
    	if bytealg.IndexByteString(host, ':') >= 0 {
    		return "[" + host + "]:" + port
    	}
    	return host + ":" + port
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar.go

    	if isIP(host) {
    		return host
    	}
    
    	var i int
    	if psl == nil {
    		i = strings.LastIndex(host, ".")
    		if i <= 0 {
    			return host
    		}
    	} else {
    		suffix := psl.PublicSuffix(host)
    		if suffix == host {
    			return host
    		}
    		i = len(host) - len(suffix)
    		if i <= 0 || host[i-1] != '.' {
    			// The provided public suffix list psl is broken.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

            return enabled;
        }
    
        public void setEnabled(boolean enabled) {
            this.enabled = enabled;
        }
    
        public String getHost() {
            return host;
        }
    
        public void setHost(String host) {
            this.host = host;
        }
    
        public int getPort() {
            return port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top