Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for tls_ca (0.1 sec)

  1. okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt

          cache.delete()
        }
      }
    
      @Test
      fun corruptedCipher() {
        val response =
          testCorruptingCache {
            corruptMetadata {
              // mess with cipher suite
              it.replace("TLS_", "SLT_")
            }
          }
    
        assertThat(response.body.string()).isEqualTo("ABC.1") // cached
        assertThat(cache.requestCount()).isEqualTo(2)
        assertThat(cache.networkCount()).isEqualTo(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_386.s

    	MOVL	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLL	$2, CX
    
    	// Save offset from TLS into tls_g.
    	ADDL	$TEB_TlsSlots, CX
    settls:
    	MOVL	CX, runtime·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_arm64.s

    	CMP	$64, R0
    	BLT	ok
    	// Fallback to the TEB arbitrary pointer.
    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVD	$TEB_ArbitraryPtr, R0
    	B	settls
    ok:
    
    	// Save offset from R18 into tls_g.
    	LSL	$3, R0
    	ADD	$TEB_TlsSlots, R0
    settls:
    	MOVD	R0, runtime·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_amd64.s

    	MOVQ	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLQ	$3, CX
    
    	// Save offset from TLS into tls_g.
    	ADDQ	$TEB_TlsSlots, CX
    settls:
    	MOVQ	CX, runtime·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. security/pkg/pki/util/keycertbundle_test.go

    	}{
    		"No SAN RSA": {
    			caCertFile:    rootCertFile,
    			caKeyFile:     rootKeyFile,
    			certChainFile: nil,
    			rootCertFile:  rootCertFile,
    			certOptions: &CertOptions{
    				Host:       "test_ca.com",
    				TTL:        time.Hour,
    				Org:        "MyOrg",
    				IsCA:       true,
    				RSAKeySize: 2048,
    			},
    			expectedErr: "failed to extract id the SAN extension does not exist",
    		},
    		"RSA Success": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/obj6.go

    	//	MOVQ TLS, BX
    	// to
    	//	MOVQ runtime.tls_g(SB), BX
    	if (isAndroid || ctxt.Headtype == objabi.Hwindows) &&
    		(p.As == AMOVQ || p.As == AMOVL) && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_TLS && p.To.Type == obj.TYPE_REG && REG_AX <= p.To.Reg && p.To.Reg <= REG_R15 {
    		p.From.Type = obj.TYPE_MEM
    		p.From.Name = obj.NAME_EXTERN
    		p.From.Reg = REG_NONE
    		p.From.Sym = ctxt.Lookup("runtime.tls_g")
    		p.From.Index = REG_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_arm.s

    	RET
    
    // int32 clone(int32 flags, void *stack, M *mp, G *gp, void (*fn)(void));
    TEXT runtime·clone(SB),NOSPLIT,$0
    	MOVW	flags+0(FP), R0
    	MOVW	stk+4(FP), R1
    	MOVW	$0, R2	// parent tid ptr
    	MOVW	$0, R3	// tls_val
    	MOVW	$0, R4	// child tid ptr
    	MOVW	$0, R5
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	MOVW	$-16(R1), R1
    	MOVW	mp+8(FP), R6
    	MOVW	R6, 0(R1)
    	MOVW	gp+12(FP), R6
    	MOVW	R6, 4(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. src/runtime/race_arm64.s

    	ADD	$176, RSP
    	JMP	(LR)
    
    noswitch:
    	// already on g0
    	MOVD	R0, 8(RSP)	// func arg
    	MOVD	R1, 16(RSP)	// func arg
    	BL	runtime·racecallback(SB)
    	JMP	ret
    
    #ifndef TLSG_IS_VARIABLE
    // tls_g, g value for each thread in TLS
    GLOBL runtime·tls_g+0(SB), TLSBSS+DUPOK, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/runtime/asm_386.s

    	// arg 4: TLS base, stored in slot 0 (Android's TLS_SLOT_SELF).
    	// Compensate for tls_g (+8).
    	MOVL	-8(TLS), BX
    	MOVL	BX, 12(SP)
    	MOVL	$runtime·tls_g(SB), 8(SP)	// arg 3: &tls_g
    #else
    	MOVL	$0, BX
    	MOVL	BX, 12(SP)	// arg 4: not used when using platform's TLS
    #ifdef GOOS_windows
    	MOVL	$runtime·tls_g(SB), 8(SP)	// arg 3: &tls_g
    #else
    	MOVL	BX, 8(SP)	// arg 3: not used when using platform's TLS
    #endif
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/runtime/race_ppc64le.s

    	MOVD	m_g0(R7), R8
    	CMP	g, R8
    	BEQ	noswitch
    
    	MOVD	R8, g // set g = m->g0
    
    noswitch:
    	BL	runtime·racecallback<ABIInternal>(SB)
    
    	UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(16)
    	RET
    
    // tls_g, g value for each thread in TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top