Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for host3 (0.15 sec)

  1. pkg/config/validation/validation.go

    			}
    		}
    
    		// Check for duplicate hosts
    		// Duplicates include literal duplicates as well as wildcard duplicates
    		// E.g., *.foo.com, and *.com are duplicates in the same virtual service
    		if allHostsValid {
    			for i := 0; i < len(virtualService.Hosts); i++ {
    				hostI := host.Name(virtualService.Hosts[i])
    				for j := i + 1; j < len(virtualService.Hosts); j++ {
    					hostJ := host.Name(virtualService.Hosts[j])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    		// If inbound cluster match has service, we should see if it matches with any host name across all instances.
    		hosts := make([]host.Name, 0, len(instances))
    		for _, si := range instances {
    			hosts = append(hosts, si.Service.Hostname)
    		}
    		clusters = cp.conditionallyAppend(clusters, hosts, localCluster.build())
    	}
    	return clusters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    	}
    	return
    }
    
    // convert ./host to currentNamespace/Host
    // */host to just host
    // */* to just *
    func sanitizeServerHostNamespace(server *networking.Server, namespace string) {
    	for i, h := range server.Hosts {
    		if strings.Contains(h, "/") {
    			parts := strings.Split(h, "/")
    			if parts[0] == "." {
    				server.Hosts[i] = namespace + "/" + parts[1] // format: %s/%s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. internal/grid/manager.go

    	m := &Manager{
    		ID:          uuid.New(),
    		targets:     make(map[string]*Connection, len(o.Hosts)),
    		local:       o.Local,
    		authRequest: o.AuthRequest,
    	}
    	m.handlers.init()
    	if ctx == nil {
    		ctx = context.Background()
    	}
    	for _, host := range o.Hosts {
    		if host == o.Local {
    			if found {
    				return nil, fmt.Errorf("grid: local host found multiple times")
    			}
    			found = true
    			// No connection to local.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 31400
          name: tcp
          protocol: TCP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: echo
    spec:
      hosts:
      - "*"
      gateways:
      - echo-gateway
      http:
      - match:
        - uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    // IPv6Compliant encloses ipv6 addresses in square brackets followed by port number in Host header/URIs
    func IPv6Compliant(host string) string {
    	if strings.Contains(host, ":") {
    		return "[" + host + "]"
    	}
    	return host
    }
    
    // DomainName builds the domain name for a given host and port
    func DomainName(host string, port int) string {
    	return net.JoinHostPort(host, strconv.Itoa(port))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    // to the same physical host. For example, if there are 2 hosts, num_replicas=8,
    // and num_cores_per_replica=2, then all cores in the first 4 replicas will map
    // to the first host and all cores in the second 4 replicas will map to the
    // second host.
    llvm::SmallVector<std::string, 8> GetTPUToHostMapReplicated(
        mlir::tf_device::ClusterOp cluster) {
      int num_cores_per_replica = GetNumCoresPerReplica(cluster);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    			} else {
    				host := fmt.Sprintf("%s.%s.svc.%s",
    					parent.OriginalReference.Name, ptr.OrDefault(parent.OriginalReference.Namespace, k8s.Namespace(obj.Namespace)), ctx.Domain)
    				vsHosts = []string{host}
    			}
    			routes = augmentTLSPortMatch(routes, parent.OriginalReference.Port, vsHosts)
    		}
    
    		for i, host := range vsHosts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    kind: VirtualService
    metadata:
      name: alias
    spec:
      hosts:
      - alias.default.svc.cluster.local
      http:
      - name: "route1"
        match:
        - uri:
            prefix: "/one"
        route:
        - destination:
            host: concrete.default.svc.cluster.local`,
    		kubeConfig: service,
    		calls: []simulation.Expect{
    			{
    				// This work, Host is just an opaque hostname match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

          name: http
          protocol: HTTP
        hosts: ["*"]
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route
    spec:
      gateways:
      - gateway
      hosts:
      - "*"
      http:
      - match:
        - uri:
            exact: /allowed
        route:
        - destination:
            host: "{{.Destination}}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top