Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,773 for host2 (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/authentication/AbstractAuthentication.java

            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;
            private final int port;
    
            DefaultHostAndPort(String host, int port) {
                this.host = 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)
  2. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-tcp
      hosts:
      - '*'
      tcp:
      - route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 9090
          weight: 1
        - destination:
            host: httpbin-alt.default.svc.domain.suffix
            port:
              number: 9090
          weight: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    	if cMatch.PortNumber != 0 && int(cMatch.PortNumber) != port {
    		return false
    	}
    	return true
    }
    
    func hostContains(hosts []host.Name, service host.Name) bool {
    	for _, h := range hosts {
    		if h == service {
    			return true
    		}
    	}
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    spec:
      gateways:
      - gateway-conformance-infra/isolation-istio-autogenerated-k8s-gateway-abc-foo-example-com
      hosts:
      - bar.com
      http:
      - match:
        - uri:
            prefix: /abc-foo-example-com
        name: gateway-conformance-infra.attaches-to-abc-foo-example-com-with-hostname-intersection.0
        route:
        - destination:
            host: infra-backend-v1.gateway-conformance-infra.svc.domain.suffix
            port:
              number: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

      rules:
        - to: # only allow /allow for company.com
            - operation:
                paths: [ "/allow" ]
                hosts: [ "www.company.com" ]
        - to: # checks only a call 443 over istio mutual without JWT
            - operation:
                hosts: [ "{{ .Allowed.ServiceName }}-{{ .Allowed.NamespaceName }}-only.com" ]
          from:
            - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/config/host/names_test.go

    		},
    		{
    			host.Names{"foo.com"},
    			host.Names{},
    			host.Names{},
    		},
    		{
    			host.Names{},
    			host.Names{"bar.com"},
    			host.Names{},
    		},
    		{
    			host.Names{"*", "foo.com"},
    			host.Names{"foo.com"},
    			host.Names{"foo.com"},
    		},
    		{
    			host.Names{"*"},
    			host.Names{"foo.com"},
    			host.Names{"foo.com"},
    		},
    		{
    			host.Names{"foo.com"},
    			host.Names{"Foo.com"},
    			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. pkg/config/validation/validation_test.go

    			}},
    		}, valid: false},
    		{name: "delegate with no hosts", in: &networking.VirtualService{
    			Hosts: nil,
    			Http: []*networking.HTTPRoute{{
    				Route: []*networking.HTTPRouteDestination{{
    					Destination: &networking.Destination{Host: "foo.baz"},
    				}},
    			}},
    		}, valid: true},
    		{name: "bad host", in: &networking.VirtualService{
    			Hosts: []string{"foo.ba!r"},
    			Http: []*networking.HTTPRoute{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/grpc.yaml.golden

          uri:
            prefix: /foo/
        name: default.grpc.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            regex: /[^/]+/bar
        name: default.grpc.1
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_test.go

    						Gateways: []string{"testns/gateway2"},
    						Hosts:    []string{"*"},
    						Tcp: []*networking.TCPRoute{{
    							Route: []*networking.RouteDestination{{Destination: &networking.Destination{Host: "example.com"}}},
    						}},
    					},
    				},
    			},
    			[]string{"0.0.0.0_443"},
    		},
    		{
    			"gateway with multiple HTTPS servers with bind and same host",
    			&pilot_model.Proxy{},
    			[]config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/virtual-service.tmpl.yaml

    kind: VirtualService
    metadata:
      name: mesh-route-outbound-traffic-to-external-svc-via-egress-gw
    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top