Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,598 for host3 (0.14 sec)

  1. pkg/volume/util/device_util_linux_test.go

    		"/sys/class/iscsi_host/host2/device/session1/target2:0:0/2:0:0:1": "2:0:0:1",
    		"/sys/class/iscsi_host/host2/device/session1/target2:0:0/2:0:0:2": "2:0:0:2",
    		"/sys/class/iscsi_host/host3/device/session2/target3:0:0/3:0:0:1": "3:0:0:1",
    		"/sys/class/iscsi_host/host3/device/session2/target3:0:0/3:0:0:2": "3:0:0:2",
    	}
    	if dev, ok := links[name]; ok {
    		return &fakeFileInfo{name: dev}, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  2. src/net/http/routing_tree_test.go

    		name       string
    		tree       *routingNode
    		host, path string
    		want       string
    	}{
    		{
    			"post",
    			buildTree("POST /"), "", "/foo",
    			"POST",
    		},
    		{
    			"get",
    			buildTree("GET /"), "", "/foo",
    			"GET,HEAD",
    		},
    		{
    			"host",
    			hostTree, "", "/foo",
    			"",
    		},
    		{
    			"host",
    			hostTree, "", "/foo/bar",
    			"POST",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/net/url/url.go

    		zone := strings.Index(host[:i], "%25")
    		if zone >= 0 {
    			host1, err := unescape(host[:zone], encodeHost)
    			if err != nil {
    				return "", err
    			}
    			host2, err := unescape(host[zone:i], encodeZone)
    			if err != nil {
    				return "", err
    			}
    			host3, err := unescape(host[i:], encodeHost)
    			if err != nil {
    				return "", err
    			}
    			return host1 + host2 + host3, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. src/net/hosts.go

    			}
    		}
    	}
    	// Update the data cache.
    	hosts.expire = now.Add(cacheMaxAge)
    	hosts.path = hp
    	hosts.byName = hs
    	hosts.byAddr = is
    	hosts.mtime = mtime
    	hosts.size = size
    }
    
    // lookupStaticHost looks up the addresses and the canonical name for the given host from /etc/hosts.
    func lookupStaticHost(host string) ([]string, string) {
    	hosts.Lock()
    	defer hosts.Unlock()
    	readHosts()
    	if len(hosts.byName) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/traffic-shifting.yaml

    kind: VirtualService
    metadata:
      name: {{.Name}}
      namespace: {{.Namespace}}
    spec:
      hosts:
        - {{.Host0}}
      http:
        - route:
            - destination:
                host: {{.Host0}}
              weight: {{.Weight0}}
            - destination:
                host: {{.Host1}}
              weight: {{.Weight1}}
            - destination:
                host: {{.Host2}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 25 00:38:53 UTC 2020
    - 420 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/hosts.go

    	}
    }
    
    // ConvertHostToFQDN returns the given host as a FQDN, if it isn't already.
    func ConvertHostToFQDN(namespace resource.Namespace, host string) string {
    	fqdn := host
    	// Convert to FQDN only if host is not a wildcard or a FQDN
    	if !strings.HasPrefix(host, "*") &&
    		!strings.Contains(host, ".") {
    		fqdn = host + "." + string(namespace) + "." + DefaultClusterLocalDomain
    	}
    	return fqdn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. src/net/testdata/ipv6-hosts

    # internet address and host name
    ::1						localhost	# inline comment separated by tab
    fe80:0000:0000:0000:0000:0000:0000:0001		localhost       # inline comment separated by space
    
    # internet address with zone identifier and host name
    fe80:0000:0000:0000:0000:0000:0000:0002%lo0	localhost
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 02 11:47:06 UTC 2015
    - 460 bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/not-host.yaml.tmpl

      servers:
        - port:
            number: 80
            name: http
            protocol: HTTP
          hosts:
            - "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: vw-{{ .To.ServiceName }}
    spec:
      hosts:
        - "allow.{{ .To.ServiceName }}.com"
        - "deny.{{ .To.ServiceName }}.com"
      gateways:
        - gw-{{ .To.ServiceName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/net/testdata/ipv4-hosts

    # See https://tools.ietf.org/html/rfc1123.
    
    # internet address and host name
    127.0.0.1	localhost	# inline comment separated by tab
    127.0.0.2	localhost   # inline comment separated by space
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 20:23:22 UTC 2021
    - 274 bytes
    - Viewed (0)
  10. docs/distributed/DESIGN.md

    ```
    minio server http://host{1...2}/export{1...8}
    ```
    
    Expected expansion
    
    ```
    > http://host1/export1
    > http://host2/export1
    > http://host1/export2
    > http://host2/export2
    > http://host1/export3
    > http://host2/export3
    > http://host1/export4
    > http://host2/export4
    > http://host1/export5
    > http://host2/export5
    > http://host1/export6
    > http://host2/export6
    > http://host1/export7
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top