Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for mtls (0.07 sec)

  1. src/net/http/cookie.go

    //
    //	cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
    //	cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
    //	          ; US-ASCII characters excluding CTLs,
    //	          ; whitespace DQUOTE, comma, semicolon,
    //	          ; and backslash
    //
    // We loosen this as spaces and commas are common in cookie values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVD	0x00ffffff(F2), F1 // ERROR "illegal base register"
    	MOVF	F2, 0x00ffffff(F2) // ERROR "illegal base register"
    	MOVD	F2, 0x00ffffff(F2) // ERROR "illegal base register"
    	MULS.S	R1, R2, R3, R4     // ERROR "invalid .S suffix"
    	ADD.P	R1, R2, R3         // ERROR "invalid .P suffix"
    	SUB.W	R2, R3             // ERROR "invalid .W suffix"
    	BL	4(R4)              // ERROR "non-zero offset"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  3. src/crypto/tls/bogo_config.json

            "Compliance-fips*": "No FIPS",
            "*DTLS*": "No DTLS",
            "SendEmptyRecords*": "crypto/tls doesn't implement spam protections",
            "SendWarningAlerts*": "crypto/tls doesn't implement spam protections",
            "TooManyKeyUpdates": "crypto/tls doesn't implement spam protections (TODO: I think?)",
            "KyberNotEnabledByDefaultInClients": "crypto/tls intentionally enables it",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/config/mesh/mesh.go

    		// DnsRefreshRate is only used when DNS requests fail (NXDOMAIN or SERVFAIL). For success, the TTL
    		// will be used.
    		// https://datatracker.ietf.org/doc/html/rfc2308#section-3 defines how negative DNS results should handle TTLs,
    		// but Envoy does not respect this (https://github.com/envoyproxy/envoy/issues/20885).
    		// To counter this, we bump up the default to 60s to avoid overloading DNS servers.
    		DnsRefreshRate:  durationpb.New(60 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_amd64.s

    	MOVQ	flags+8(FP), SI
    	MOVQ	lwpid+16(FP), DX
    	MOVL	$SYS__lwp_create, AX
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+24(FP)
    	RET
    
    TEXT runtime·lwp_tramp(SB),NOSPLIT,$0
    
    	// Set FS to point at m->tls.
    	LEAQ	m_tls(R8), DI
    	CALL	runtime·settls(SB)
    
    	// Set up new stack.
    	get_tls(CX)
    	MOVQ	R8, g_m(R9)
    	MOVQ	R9, g(CX)
    	CALL	runtime·stackcheck(SB)
    
    	// Call fn. This is an ABI0 PC.
    	CALL	R12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. cmd/utils.go

    }
    
    func newTLSConfig(getCert certs.GetCertificateFunc) *tls.Config {
    	if getCert == nil {
    		return nil
    	}
    
    	tlsConfig := &tls.Config{
    		PreferServerCipherSuites: true,
    		MinVersion:               tls.VersionTLS12,
    		NextProtos:               []string{"http/1.1", "h2"},
    		GetCertificate:           getCert,
    		ClientSessionCache:       tls.NewLRUClientSessionCache(tlsClientSessionCacheSize),
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  7. src/runtime/asm_386.s

    needtls:
    #ifdef GOOS_openbsd
    	// skip runtime·ldt0setup(SB) and tls test on OpenBSD in all cases
    	JMP	ok
    #endif
    #ifdef GOOS_plan9
    	// skip runtime·ldt0setup(SB) and tls test on Plan 9 in all cases
    	JMP	ok
    #endif
    
    	// set up %gs
    	CALL	ldt0setup<>(SB)
    
    	// store through it, to make sure it works
    	get_tls(BX)
    	MOVL	$0x123, g(BX)
    	MOVL	runtime·m0+m_tls(SB), AX
    	CMPL	AX, $0x123
    	JEQ	ok
    	MOVL	AX, 0	// abort
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_amd64.s

    	MOVL size+8(FP), SI
    	MOVL $SYS_thr_new, AX
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+16(FP)
    	RET
    
    TEXT runtime·thr_start(SB),NOSPLIT,$0
    	MOVQ	DI, R13 // m
    
    	// set up FS to point at m->tls
    	LEAQ	m_tls(R13), DI
    	CALL	runtime·settls(SB)	// smashes DI
    
    	// set up m, g
    	get_tls(CX)
    	MOVQ	m_g0(R13), DI
    	MOVQ	R13, g_m(DI)
    	MOVQ	DI, g(CX)
    
    	CALL	runtime·stackcheck(SB)
    	CALL	runtime·mstart(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    					rt.id,
    					rt.secret,
    					rt.bts,
    					actual,
    				)
    			}
    		})
    	}
    }
    
    // This timestamp is used as the reference value when computing expiration dates based on TTLs in these unit tests
    var refTime = time.Date(1970, time.January, 1, 1, 1, 1, 0, time.UTC)
    
    func TestBootstrapTokenToSecret(t *testing.T) {
    	var tests = []struct {
    		bt     *BootstrapToken
    		secret *v1.Secret
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MULA", argLength: 3, reg: gp31, asm: "MULA"},                      // arg0 * arg1 + arg2
    		{name: "MULS", argLength: 3, reg: gp31, asm: "MULS"},                      // arg2 - arg0 * arg1
    
    		{name: "ADDF", argLength: 2, reg: fp21, asm: "ADDF", commutative: true},   // arg0 + arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top