Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 492 for host2 (0.33 sec)

  1. tests/integration/security/egress_gateway_origination_test.go

        - port:
            number: 443
            name: https-sds
            protocol: HTTPS
          hosts:
          - {{ .to.Config.ClusterLocalFQDN }}
          tls:
            mode: ISTIO_MUTUAL
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: egressgateway-for-server-sds
    spec:
      host: {{.EgressService}}.{{.EgressNamespace}}.svc.cluster.local
      subsets:
      - name: server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

        description: "Gateway should not have the same selector, port and matched hosts of server"
        template: "Conflict with gateways %s (workload selector %s, port %s, hosts %v)."
        args:
          - name: gateway
            type: string
          - name: selector
            type: string
          - name: portnumber
            type: string
          - name: hosts
            type: string
    
      - name: "ImageAutoWithoutInjectionWarning"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/gateway_test.go

    			// apps.B hosts an ipv4 only service
    			{
    				check: check.OK(),
    				from:  apps.D,
    				host:  "bar.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.E,
    				host:  "bar.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.E,
    				host:  "foo.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.D,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pilot/pkg/features/experimental.go

    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    			" to unhealthy/non-ready hosts even if the percentage of healthy hosts fall below minimum health percentage(panic threshold).",
    	).Get())
    
    	EnablePersistentSessionFilter = env.Register(
    		"PILOT_ENABLE_PERSISTENT_SESSION_FILTER",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. 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)
  6. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	if strings.HasSuffix(host, m.host) || (m.matchHost && host == m.host[1:]) {
    		return m.port == "" || m.port == port
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

    // interconnects, which is much faster than PCIe or the host network.
    // TODO(b/117426293): This implementation is only called for direct interconnect
    // transfers between TPU devices attached to the same host. Ideally, we would
    // generalize this support to direct interconnect transfers across hosts, but
    // currently the CopyTensor infrastructure seems to the network topology is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	}
    
    	return true
    }
    
    func matchExactly(hostA, hostB string) bool {
    	if hostA == "" || hostA == "." || hostB == "" || hostB == "." {
    		return false
    	}
    	return toLowerCaseASCII(hostA) == toLowerCaseASCII(hostB)
    }
    
    func matchHostnames(pattern, host string) bool {
    	pattern = toLowerCaseASCII(pattern)
    	host = toLowerCaseASCII(strings.TrimSuffix(host, "."))
    
    	if len(pattern) == 0 || len(host) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	},
    }
    
    // Shares the same host as httpStatic, but adds some endpoints. We expect these to be merge
    var httpStaticOverlay = &config.Config{
    	Meta: config.Meta{
    		GroupVersionKind:  gvk.ServiceEntry,
    		Name:              "httpStaticOverlay",
    		Namespace:         "httpStatic",
    		CreationTimestamp: GlobalTime,
    	},
    	Spec: &networking.ServiceEntry{
    		Hosts: []string{"*.google.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. pilot/pkg/xds/xds_test.go

            name: custom-http
          defaultEndpoint: unix:///var/run/someuds.sock
    {{- end }}
      egress:
        - hosts:
    {{ range $i, $ns := .ImportedNamespaces }}
          - {{$ns}}
    {{ end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: app
      namespace: app
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top