Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,227 for host2 (0.07 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. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultNativePlatformTest.groovy

        }
    
        def "host platform has useful display name"() {
            expect:
            def host = DefaultNativePlatform.host()
            host.displayName.startsWith("host operating system")
            host.toString() == host.displayName
    
            def host2 = host.withArchitecture(arch)
            host2.displayName.startsWith("host operating system")
            host2.toString() == host2.displayName
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cmd/net.go

    func isHostIP(ipAddress string) bool {
    	host, _, err := net.SplitHostPort(ipAddress)
    	if err != nil {
    		host = ipAddress
    	}
    	// Strip off IPv6 zone information.
    	if i := strings.Index(host, "%"); i > -1 {
    		host = host[:i]
    	}
    	return net.ParseIP(host) != nil
    }
    
    // extractHostPort - extracts host/port from many address formats
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/proxy/endpointslicecache_test.go

    			namespacedName: types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			hostname:       "host1",
    			endpointSlices: []*discovery.EndpointSlice{
    				generateEndpointSliceWithOffset("svc1", "ns1", 1, 1, 2, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80)}),
    				generateEndpointSliceWithOffset("svc1", "ns1", 2, 1, 2, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](8080)}),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. pkg/proxy/endpointschangetracker_test.go

    			},
    			endpointsChangeTracker: NewEndpointsChangeTracker("host1", nil, v1.IPv4Protocol, nil, nil),
    			namespacedName:         types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			paramEndpointSlice:     generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80), ptr.To[int32](443)}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/config_compare_test.go

    				},
    				Spec: &networking.VirtualService{Hosts: []string{"test-host"}},
    			},
    			curr: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "acme2-v1",
    					Namespace:        "not-default",
    					Labels:           map[string]string{"test": "test-v1"},
    				},
    				Spec: &networking.VirtualService{Hosts: []string{"test-host", "test-host2"}},
    			},
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/mirror_test.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    //	Virtual service topology
    //
    //	    a                      b                     c
    //	|-------|             |-------|    mirror   |-------|
    //	| Host0 | ----------> | Host1 | ----------> | Host2 |
    //	|-------|             |-------|             |-------|
    //
    
    type VirtualServiceMirrorConfig struct {
    	Name       string
    	Absent     bool
    	Percent    float64
    	MirrorHost string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. 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)
Back to top