Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,326 for tlsg (0.07 sec)

  1. cni/pkg/install/testdata/kubeconfig-tls

    John Howard <******@****.***> 1684290142 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. hack/testdata/tls.crt

    Prashanth Balasubramanian <******@****.***> 1461527218 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 17 05:38:56 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/tls_arm.s

    	MOVW	_cgo_init(SB), R4
    	CMP	$0, R4
    	B.EQ	nocgo
    	MRC     15, 0, R0, C13, C0, 3 	// load TLS base pointer
    	MOVW 	R0, R3 			// arg 3: TLS base pointer
    #ifdef TLSG_IS_VARIABLE
    	MOVW 	$runtime·tls_g(SB), R2 	// arg 2: &tls_g
    #else
    	MOVW	$0, R2			// arg 2: not used when using platform tls
    #endif
    	MOVW	$setg_gcc<>(SB), R1 	// arg 1: setg
    	MOVW	g, R0 			// arg 0: G
    	BL	(R4) // will clobber R0-R3
    nocgo:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. samples/tlssurvey/src/main/kotlin/okhttp3/survey/Iana.kt

        return suites.firstOrNull {
          it.name == javaName || it.name == "TLS_${javaName.drop(4)}"
        } ?: throw IllegalArgumentException("No such suite: $javaName")
      }
    }
    
    suspend fun fetchIanaSuites(okHttpClient: OkHttpClient): IanaSuites {
      val url = "https://www.iana.org/assignments/tls-parameters/tls-parameters-4.csv"
    
      val call = okHttpClient.newCall(Request(url.toHttpUrl()))
    
      val suites =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. releasenotes/notes/tls-redirect.yaml

    John Howard <******@****.***> 1610556566 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:49:26 UTC 2021
    - 191 bytes
    - Viewed (0)
  6. src/runtime/asan_ppc64le.s

    	BL	(CTR)
    	MOVD	$0, R0			// C code can clobber R0 set it back to 0
    	MOVD	R16, R1			// restore R1;
    	MOVD	runtime·tls_g(SB), R10	// find correct g
    	MOVD	0(R10), g
    	RET
    
    // tls_g, g value for each thread in TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

          return when {
            javaName.startsWith("TLS_") -> "SSL_" + javaName.substring(4)
            javaName.startsWith("SSL_") -> "TLS_" + javaName.substring(4)
            else -> javaName
          }
        }
    
        /**
         * @param javaName the name used by Java APIs for this cipher suite. Different than the IANA
         *     name for older cipher suites because the prefix is `SSL_` instead of `TLS_`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  8. releasenotes/notes/ef-tls-regression.yaml

    John Howard <******@****.***> 1623517281 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 12 17:01:21 UTC 2021
    - 240 bytes
    - Viewed (0)
  9. src/runtime/sys_windows_arm.s

    //       runtime.mcall assumes this function only clobbers R0 and R11.
    // Returns with g in R0.
    // Save the value in the _TEB->TlsSlots array.
    // Effectively implements TlsSetValue().
    // tls_g stores the TLS slot allocated TlsAlloc().
    TEXT runtime·save_g(SB),NOSPLIT,$0
    	MRC	15, 0, R0, C13, C0, 2
    	ADD	$0xe10, R0
    	MOVW 	$runtime·tls_g(SB), R11
    	MOVW	(R11), R11
    	MOVW	g, R11<<2(R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/runtime/sys_windows_386.s

    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	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)
Back to top