Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 433 for lmhosts (0.26 sec)

  1. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml.golden

        internal.istio.io/parents: Gateway/gateway/my-svc.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-my-svc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 34000
          protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. security/pkg/pki/util/san_test.go

    	testCases := map[string]struct {
    		hosts       string
    		expectedExt *pkix.Extension
    	}{
    		"URI host": {
    			hosts:       "spiffe://test.domain.com/ns/default/sa/default",
    			expectedExt: getSANExtension([]Identity{uriIdentity}, t),
    		},
    		"IP host": {
    			hosts:       "10.0.0.1",
    			expectedExt: getSANExtension([]Identity{ipIdentity}, t),
    		},
    		"DNS host": {
    			hosts:       "test.domain.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

        internal.istio.io/parents: Gateway/gateway/http.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-http
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/serviceentry_simulation_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se1
    spec:
      hosts:
      - blah.somedomain
      addresses:
      - %s
      ports:
      - number: 9999
        name: TCP-9999
        protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se2
    spec:
      hosts:
      - blah.somedomain
      addresses:
      - %s
      ports:
      - number: 9999
        name: TCP-9999
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - allowed-1/*.domain.example
        - allowed-2/*.domain.example
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/authentication/AbstractAuthentication.java

        }
    
    
        @Override
        public Collection<HostAndPort> getHostsForAuthentication() {
            return hosts;
        }
    
    
        @Override
        public void addHost(String host, int port) {
            hosts.add(new DefaultHostAndPort(host, port));
        }
    
        private static class DefaultHostAndPort implements HostAndPort {
            private final String host;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    					},
    					Bind:  "unix://foo/bar/headless",
    					Hosts: []string{"*/test-headless.com"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   18888,
    						Protocol: "HTTP",
    						Name:     "foo",
    					},
    					Hosts: []string{"*/test-headless.com"},
    				},
    				{
    					// Wildcard egress importing from all namespaces
    					Hosts: []string{"*/*"},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_windows_test.go

    			HostPath:       `\\.\pipe\pipe1`,
    			ReadOnly:       false,
    			SELinuxRelabel: false,
    		},
    		{
    			Name:           "k8s-managed-etc-hosts",
    			ContainerPath:  `C:\Windows\System32\drivers\etc\hosts`,
    			HostPath:       filepath.Join(podDir, "etc-hosts"),
    			ReadOnly:       false,
    			SELinuxRelabel: true,
    		},
    	}
    	assert.Equal(t, expectedMounts, mounts, "mounts of container %+v", container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. internal/grid/benchmark_test.go

    					n := 0
    					var latency int64
    					managers := grid.Managers
    					hosts := grid.Hosts
    					for pb.Next() {
    						// Pick a random manager.
    						src, dst := rng.Intn(len(managers)), rng.Intn(len(managers))
    						if src == dst {
    							dst = (dst + 1) % len(managers)
    						}
    						local := managers[src]
    						conn := local.Connection(hosts[dst])
    						if conn == nil {
    							b.Fatal("No connection")
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/host_stats_provider.go

    }
    
    // getPodEtcHostsStats gets status for pod etc hosts usage
    func (h hostStatsProvider) getPodEtcHostsStats(podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error) {
    	// Runtimes may not support etc hosts file (Windows with docker)
    	podEtcHostsPath := h.podEtcHostsPathFunc(podUID)
    	// Some pods have an explicit /etc/hosts mount and the Kubelet will not create an etc-hosts file for them
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top