Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for tlsg (0.1 sec)

  1. src/cmd/link/internal/ld/data.go

    				// On ELF ARM, the thread pointer is 8 bytes before
    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    				// ELF on ARM (or maybe Glibc on ARM); it is not
    				// related to the fact that our own TLS storage happens
    				// to take up 8 bytes.
    				o = 8 + ldr.SymValue(rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			expectTLSContext: &tls.UpstreamTlsContext{
    				CommonTlsContext: &tls.CommonTlsContext{
    					TlsParams: &tls.TlsParameters{
    						// if not specified, envoy use TLSv1_2 as default for client.
    						TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    						TlsMinimumProtocolVersion: tls.TlsParameters_TLSv1_2,
    					},
    					ValidationContextType: &tls.CommonTlsContext_CombinedValidationContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    			},
    		},
    		{
    			// tcp server is simple tls, no istio-peer-exchange in the alpns
    			name: "tcp server, tls SIMPLE",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.TLS),
    				},
    				Tls: &networking.ServerTLSSettings{
    					Mode:           networking.ServerTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		if tls.CaCrl != "" || tls.ServerCertificate != "" || tls.PrivateKey != "" || tls.CaCertificates != "" || tls.CredentialName != "" {
    			// Warn for backwards compatibility
    			v = AppendWarningf(v, "%v mode does not use certificates, they will be ignored", tls.Mode)
    		}
    	}
    
    	if (tls.Mode == networking.ServerTLSSettings_SIMPLE || tls.Mode == networking.ServerTLSSettings_MUTUAL ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			},
    			"must have TLS",
    		},
    		{
    			"tls on HTTP",
    			&networking.Server{
    				Hosts: []string{"foo.bar.com"},
    				Port:  &networking.Port{Number: 10000, Name: "http", Protocol: "http"},
    				Tls:   &networking.ServerTLSSettings{Mode: networking.ServerTLSSettings_SIMPLE},
    			},
    			"cannot have TLS",
    		},
    		{
    			"tls redirect on HTTP",
    			&networking.Server{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// TLSConfig optionally provides a TLS configuration for use
    	// by ServeTLS and ListenAndServeTLS. Note that this value is
    	// cloned by ServeTLS and ListenAndServeTLS, so it's not
    	// possible to modify the configuration with methods like
    	// tls.Config.SetSessionTicketKeys. To use
    	// SetSessionTicketKeys, use Server.Serve with a TLS Listener
    	// instead.
    	TLSConfig *tls.Config
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	R_386_TLS_LDO_32    R_386 = 32 /* 32 bit offset from start of TLS block */
    	R_386_TLS_IE_32     R_386 = 33 /* 32 bit offset to GOT static TLS offset entry */
    	R_386_TLS_LE_32     R_386 = 34 /* 32 bit offset within static TLS block */
    	R_386_TLS_DTPMOD32  R_386 = 35 /* GOT entry containing TLS index */
    	R_386_TLS_DTPOFF32  R_386 = 36 /* GOT entry containing TLS offset */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    	// For port 8080, (m)TLS settings is automatically added, thus its cluster should have TLS context.
    	// TlsContext is nil because we use socket match instead
    	g.Expect(getTLSContext(t, clusters[0])).To(BeNil())
    	g.Expect(clusters[0].TransportSocketMatches).To(HaveLen(2))
    
    	// For 9090, use the TLS settings are explicitly specified in DR (which disable TLS)
    	g.Expect(getTLSContext(t, clusters[1])).To(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    spec:
      selector:
        istio: {{.GatewayIstioLabel | default "ingressgateway"}}
      servers:
        - port:
            number: 443
            name: tls
            protocol: TLS
          tls:
            mode: AUTO_PASSTHROUGH
          hosts:
            - "*.local"
    `,
    			children: childs,
    			templateVars: func(_ echo.Callers, dests echo.Instances) map[string]any {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    		if r.Host != want {
    			t.Errorf("Host header = %q; want %q", r.Host, want)
    		}
    		if mode == http2Mode {
    			if r.TLS == nil {
    				t.Errorf("r.TLS == nil")
    			} else if r.TLS.ServerName != punyDomain {
    				t.Errorf("TLS.ServerName = %q; want %q", r.TLS.ServerName, punyDomain)
    			}
    		}
    		w.Header().Set("Hit-Handler", "1")
    	}), func(tr *Transport) {
    		if tr.TLSClientConfig != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top