Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 368 for lmhosts (0.12 sec)

  1. src/net/hook_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix || js || wasip1
    
    package net
    
    import "syscall"
    
    var (
    	testHookCanceledDial = func() {} // for golang.org/issue/16523
    
    	hostsFilePath = "/etc/hosts"
    
    	// Placeholders for socket system calls.
    	socketFunc        func(int, int, int) (int, error)  = syscall.Socket
    	connectFunc       func(int, syscall.Sockaddr) error = syscall.Connect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 658 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/reachability/migration.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: "{{ .To.ServiceName }}"
    spec:
      hosts:
      - "{{ .To.ClusterLocalFQDN }}"
      http:
      - name: "vistio-route"
        match:
        - uri:
            prefix: "/vistio"
        route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 975 bytes
    - Viewed (0)
  3. tests/testdata/config/static-weighted-se.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: httpbin
    spec:
      hosts:
        - weighted.static.svc.cluster.local
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: STATIC
      endpoints:
        - address: 3.3.3.3
          locality: a
        - address: 2.2.2.2
          locality: a
          weight: 8
        - address: 1.1.1.1
          locality: b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 18 01:09:21 UTC 2019
    - 394 bytes
    - Viewed (0)
  4. pkg/test/datasets/validation/dataset/networking-v1alpha3-ServiceEntry.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: valid-service-entry
    spec:
      hosts:
      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 512 bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/disabled.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 7070
        name: tcp
        protocol: TCP
      - number: 443
        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 595 bytes
    - Viewed (0)
  6. pkg/config/host/names_test.go

    		},
    	}
    
    	for idx, tt := range tests {
    		t.Run(fmt.Sprintf("%d", idx), func(t *testing.T) {
    			result := host.NamesForNamespace(tt.hosts, tt.namespace)
    			if !reflect.DeepEqual(result, tt.want) {
    				t.Fatalf("host.NamesForNamespace(%v, %v) = %v, want %v", tt.hosts, tt.namespace, result, tt.want)
    			}
    		})
    	}
    }
    
    func TestNamesSortOrder(t *testing.T) {
    	tests := []struct {
    		in, want host.Names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. istioctl/pkg/analyze/testdata/analyze-file/public-gateway.yaml

    kind: Gateway
    metadata:
      name: public-gateway
      namespace: istio-system
    spec:
      selector:
        istio: gateway
      servers:
        - port:
            number: 80
            name: http
            protocol: HTTP
          hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 261 bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/externalname.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
        - example.com
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
        - address: 1.1.1.1
          labels:
            security.istio.io/tlsMode: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 632 bytes
    - Viewed (0)
  9. tests/testdata/config/gateway-tcp-a.yaml

        # The ingressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: ingressgateway
      servers:
      - port:
          number: 31400
          protocol: TCP
          name: tcp
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 482 bytes
    - Viewed (0)
  10. samples/bookinfo/networking/virtual-service-reviews-90-10.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
        - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
          weight: 90
        - destination:
            host: reviews
            subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 290 bytes
    - Viewed (0)
Back to top