Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 330 for lmhosts (0.11 sec)

  1. pkg/config/validation/validation_test.go

    			&networking.Server{
    				Hosts: []string{"ns1/foo.bar.com"},
    				Port:  &networking.Port{Number: 7, Name: "http", Protocol: "http"},
    			},
    			"",
    		},
    		{
    			"happy */name",
    			&networking.Server{
    				Hosts: []string{"*/foo.bar.com"},
    				Port:  &networking.Port{Number: 7, Name: "http", Protocol: "http"},
    			},
    			"",
    		},
    		{
    			"happy ./name",
    			&networking.Server{
    				Hosts: []string{"./foo.bar.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. src/net/conf_test.go

    			c: &conf{
    				netGo: true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns files"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "netgo_fallback_on_cgo",
    			c: &conf{
    				netGo: true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns files something_custom"),
    			hostTests: []nssHostTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads_test.go

    	}
    
    	addVirtualService := func(i int, hosts []string, dest string) {
    		if _, err := s.Store().Create(config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             fmt.Sprintf("vs%d", i), Namespace: testConfigNamespace,
    			},
    			Spec: &networking.VirtualService{
    				Hosts: hosts,
    				Http: []*networking.HTTPRoute{{
    					Name: "dest-foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    	if efw == nil {
    		return true
    	}
    	for _, cp := range efw.Patches[networking.EnvoyFilter_CLUSTER] {
    		if cp.Operation != networking.EnvoyFilter_Patch_REMOVE {
    			continue
    		}
    		if commonConditionMatch(pctx, cp) && clusterMatch(c, cp, hosts) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top