Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 274 for lmhosts (2.92 sec)

  1. 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)
  2. tests/integration/telemetry/policy/helper_test.go

      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "some-external-site.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
    spec:
      hosts:
        - "some-external-site.com"
      gateways:
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	// Set up ground truth hostname values
    	hosts := map[host.Name]bool{
    		mock.HelloService.Hostname: false,
    		mock.WorldService.Hostname: false,
    	}
    
    	count := 0
    	// Compare return value to ground truth
    	for _, svc := range services {
    		if counted, existed := hosts[svc.Hostname]; existed && !counted {
    			count++
    			hosts[svc.Hostname] = true
    		}
    	}
    
    	if count != len(hosts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K 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. pilot/pkg/model/config_test.go

    		for i := 1; i <= bm.time; i++ {
    			// these specific non-wildcard hosts are crafted this way to never match the needle,
    			// this should replicate real-world scenarios of mixed specific and wildcard hosts
    			specific := host.Name(strconv.Itoa(i) + "." + bm.baseHost)
    			// generate correct wildcard hosts, one of these will match
    			wildcard := host.Name("*." + bm.baseHost + "." + strconv.Itoa(i))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/peer_authentication_simulation_test.go

        port:
          name: tls
          number: 8080
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
      workloadSelector:
        labels:
          app: foo
    ---`
    	instancePorts := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
        labels:
          app: foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NbtAddress.java

     * service is a dynamic distributed service that allows hosts to resolve
     * names by broadcasting a query, directing queries to a server such as
     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
     * and hosts usually registers several names on the network. From a
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  8. istioctl/pkg/validate/validate_test.go

    spec:
      exportTo:
      - '.'
      hosts:
      - d
      http:
      - route:
        - destination:
            host: c
            subset: v1`
    	validVirtualService2JSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    	"name": "valid-virtual-service2"
    },
    "spec": {
    	"exportTo": [
    	"."
    	],
    	"hosts": [
    	"d"
    	],
    	"http": [
    	{
    		"route": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    		return nil
    	}
    	return envoyfilter.ApplyClusterMerge(p.pctx, p.efw, c, hosts)
    }
    
    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice.go

    	// Kubernetes Gateway API semantics support shortnames
    	if UseGatewaySemantics(config.Config{Meta: meta}) {
    		return
    	}
    
    	// resolve top level hosts
    	for i, h := range rule.Hosts {
    		rule.Hosts[i] = string(ResolveShortnameToFQDN(h, meta))
    	}
    	// resolve gateways to bind to
    	for i, g := range rule.Gateways {
    		if g != constants.IstioMeshGateway {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top