Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for 8092 (0.61 sec)

  1. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    	// ports with plaintext: 8090 (http) and 8092 (tcp)
    	// ports with mTLS: 8091 (http), 8093 (tcp) and 9000 (tcp passthrough).
    	policy = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "mtls"
    spec:
      selector:
        matchLabels:
          app: server
      mtls:
        mode: STRICT
      portLevelMtls:
        8090:
          mode: DISABLE
        8092:
          mode: DISABLE
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tests/integration/security/util/framework.go

    			},
    			{
    				Name:         "http-8091",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8091,
    			},
    			{
    				Name:         "http-8092",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8092,
    			},
    			{
    				Name:         "tcp-8093",
    				Protocol:     protocol.TCP,
    				WorkloadPort: 8093,
    			},
    			{
    				Name:         "tcp-8094",
    				Protocol:     protocol.TCP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/main_test.go

    				Protocol:     protocol.HTTP,
    				ServicePort:  8090,
    				WorkloadPort: 8090,
    			},
    			{
    				Name:         httpMTLS,
    				Protocol:     protocol.HTTP,
    				ServicePort:  8091,
    				WorkloadPort: 8091,
    			},
    			{
    				Name:         tcpPlaintext,
    				Protocol:     protocol.TCP,
    				ServicePort:  8092,
    				WorkloadPort: 8092,
    			},
    			{
    				Name:         tcpMTLS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tests/integration/security/filebased_tls_origination/main_test.go

    			{
    				Name:         "grpc",
    				Protocol:     protocol.GRPC,
    				WorkloadPort: 8090,
    				TLS:          true,
    			},
    			{
    				Name:         "http",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8091,
    				TLS:          true,
    			},
    			{
    				Name:         "tcp",
    				Protocol:     protocol.TCP,
    				WorkloadPort: 8092,
    				TLS:          true,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv12-AES128-SHA256

    00000010  06 5c 47 ea d5 6e 90 05  21 91 9a 86 06 42 f6 54  |.\G..n..!....B.T|
    00000020  25 4a 61 65 7e 19 c8 1a  58 52 06 81 df dd 19 fc  |%Jae~...XR......|
    00000030  bd 5a 82 ff ae 80 92 b3  3b 7d 89 c0 64 b1 36 e3  |.Z......;}..d.6.|
    00000040  5c bb 2a 5b e8 6d 18 02  43 27 b5 57 bc 3f ab b1  |\.*[.m..C'.W.?..|
    00000050  27 59 0e 6a d5 07 6a 66  ad 51 82                 |'Y.j..jf.Q.|
    >>> Flow 5 (client to server)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    void b7786(struct body7786 *ctx) {}
    void c7786(typedef_body7786 *ctx) {}
    
    typedef union union7786 typedef_union7786;
    void u7786(union union7786 *ctx) {}
    void v7786(typedef_union7786 *ctx) {}
    
    // issue 8092
    // Test that linker defined symbols (e.g., text, data) don't
    // conflict with C symbols.
    char text[] = "text";
    char data[] = "data";
    char *ctext(void) { return text; }
    char *cdata(void) { return data; }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    		{
    			pod1: st.MakePod().ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8001,
    					HostPort:      8001,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8002,
    					HostPort:      8002,
    					Protocol:      v1.ProtocolTCP,
    				}}).ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8003,
    					HostPort:      8003,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    		Ports: []*pilot_model.Port{{
    			Name:     "http",
    			Protocol: "HTTP",
    			Port:     8092,
    		}},
    		Attributes: pilot_model.ServiceAttributes{
    			Namespace: "default",
    			ExportTo:  sets.New(visibility.Private),
    		},
    	}
    
    	cg := NewConfigGenTest(t, TestOptions{
    		Configs: []config.Config{virtualService},
    		Services: []*pilot_model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

      - port:
          number: 8002
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8001
      name: my-ingressgateway-8001
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8002
      name: my-ingressgateway-8002
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. samples/health-check/server.go

    	go func() {
    		http.ListenAndServe(":8002", server8002)
    	}()
    
    	<-finish
    }
    
    func foo8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: foo "))
    }
    
    func bar8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: bar "))
    }
    
    func foo8002(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8002: foo "))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top