Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,096 for host3 (0.09 sec)

  1. istioctl/pkg/workload/testdata/vmconfig-nil-proxy-metadata/hosts.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - Viewed (0)
  2. 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)
  3. releasenotes/notes/optimize-most-specific-host-match.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 182 bytes
    - Viewed (0)
  4. 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)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    spec:
      hosts: [hello]
      http:
        - route:
            - destination:
                host: hello.hello.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: hello-export-to-bogus
      namespace: hello
    spec:
      hosts: [hello]
      exportTo:
        - bogus # This should generate an error, because the exportTo
      http:
        - route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/cluster_local.go

    	} else {
    		if !strings.HasSuffix(string(discoveryHost), domainSuffix) {
    			discoveryHost += host.Name("." + domainSuffix)
    		}
    		defaultClusterLocalHosts = append(defaultClusterLocalHosts, discoveryHost)
    	}
    
    	// Collect the cluster-local hosts.
    	hosts := ClusterLocalHosts{
    		specific: make(map[host.Name]struct{}, 0),
    		wildcard: make(map[host.Name]struct{}, 0),
    	}
    	for _, serviceSettings := range e.Mesh().ServiceSettings {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/config/host/names.go

    	return result
    }
    
    // NewNames converts a slice of host name strings to type Names.
    func NewNames(hosts []string) Names {
    	result := make(Names, 0, len(hosts))
    	for _, host := range hosts {
    		result = append(result, Name(host))
    	}
    	return result
    }
    
    // NamesForNamespace returns the subset of hosts that are in the specified namespace.
    // The list of hosts contains host names optionally qualified with namespace/ or */.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

      creationTimestamp: null
      name: egress-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - google.com
      http:
      - name: default.egress.0
        route:
        - destination:
            host: google.com
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      name: consumer-override-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - httpbin-apple.apple.svc.domain.suffix
      http:
      - match:
        - port: 80
        name: default.consumer-override.0
        route:
        - destination:
            host: httpbin-apple.apple.svc.domain.suffix
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. 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)
Back to top