Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 531 for tlsg (0.15 sec)

  1. src/cmd/internal/objabi/reloctype.go

    	R_PCREL
    	// R_TLS_LE, used on 386, amd64, and ARM, resolves to the offset of the
    	// thread-local symbol from the thread local base and is used to implement the
    	// "local exec" model for tls access (r.Sym is not set on intel platforms but is
    	// set to a TLS symbol -- runtime.tlsg -- in the linker when externally linking).
    	R_TLS_LE
    	// R_TLS_IE, used 386, amd64, and ARM resolves to the PC-relative offset to a GOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/operand_test.go

    	{"$0.5", "$(0.5)"},
    	{"$0x7000", "$28672"},
    	{"$0x88888eef", "$2290650863"},
    	{"$1", "$1"},
    	{"$_main<>(SB)", "$_main<>(SB)"},
    	{"$argframe(FP)", "$argframe(FP)"},
    	{"$runtime·tlsg(SB)", "$runtime.tlsg(SB)"},
    	{"$~3", "$-4"},
    	{"(-288-3*8)(R1)", "-312(R1)"},
    	{"(16)(R7)", "16(R7)"},
    	{"(8)(g)", "8(g)"},
    	{"(CTR)", "(CTR)"},
    	{"(R0)", "(R0)"},
    	{"(R3)", "(R3)"},
    	{"(R4)", "(R4)"},
    	{"(R5)", "(R5)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. src/runtime/asm_arm64.s

    	MOVD	_cgo_init(SB), R12
    	CBZ	R12, nocgo
    
    #ifdef GOOS_android
    	MRS_TPIDR_R0			// load TLS base pointer
    	MOVD	R0, R3			// arg 3: TLS base pointer
    	MOVD	$runtime·tls_g(SB), R2 	// arg 2: &tls_g
    #else
    	MOVD	$0, R2		        // arg 2: not used when using platform's TLS
    #endif
    	MOVD	$setg_gcc<>(SB), R1	// arg 1: setg
    	MOVD	g, R0			// arg 0: G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    // license that can be found in the LICENSE file.
    
    // Package tlog implements a tamper-evident log
    // used in the Go module go.sum database server.
    //
    // This package follows the design of Certificate Transparency (RFC 6962)
    // and its proofs are compatible with that system.
    // See TestCertificateTransparency.
    package tlog
    
    import (
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"math/bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/crypto/tls/tls.go

    // license that can be found in the LICENSE file.
    
    // Package tls partially implements TLS 1.2, as specified in RFC 5246,
    // and TLS 1.3, as specified in RFC 8446.
    package tls
    
    // BUG(agl): The crypto/tls package only implements some countermeasures
    // against Lucky13 attacks on CBC-mode encryption, and only on SHA1
    // variants. See http://www.isg.rhul.ac.uk/tls/TLStiming.pdf and
    // https://www.imperialviolet.org/2013/02/04/luckythirteen.html.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tls.go

    	// Is there a virtual service with a TLS block that matches us?
    	hasTLSMatch := false
    
    	lb := &ListenerBuilder{node: node, push: push}
    	out := make([]*filterChainOpts, 0)
    	for _, cfg := range configs {
    		virtualService := cfg.Spec.(*v1alpha3.VirtualService)
    		for _, tls := range virtualService.Tls {
    			for _, match := range tls.Match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. src/crypto/tls/bogo_config.json

            "DuplicateExtensionServer-TLS-TLS1": "TODO: first pass, this should be fixed",
            "DuplicateExtensionClient-TLS-TLS1": "TODO: first pass, this should be fixed",
            "UnsolicitedServerNameAck-TLS-TLS1": "TODO: first pass, this should be fixed",
            "TicketSessionIDLength-33-TLS-TLS1": "TODO: first pass, this should be fixed",
            "DuplicateExtensionServer-TLS-TLS11": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/internal/obj/x86/obj6.go

    	// Thread-local storage references use the TLS pseudo-register.
    	// As a register, TLS refers to the thread-local storage base, and it
    	// can only be loaded into another register:
    	//
    	//         MOVQ TLS, AX
    	//
    	// An offset from the thread-local storage base is written off(reg)(TLS*1).
    	// Semantically it is off(reg), but the (TLS*1) annotation marks this as
    	// indexing from the loaded TLS base. This emits a relocation so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  10. pilot/pkg/credentials/kube/secrets_test.go

    		// These are in local cluster, we can access
    		{"tls", "default", "local", "tls-cert", "tls-key", ""},
    		{"tls-mtls", "default", "local", "tls-mtls-cert", "tls-mtls-key", "tls-mtls-ca"},
    		{"tls-mtls-split", "default", "local", "tls-mtls-split-cert", "tls-mtls-split-key", ""},
    		{"tls-mtls-split-cacert", "default", "local", "", "", "tls-mtls-split-ca"},
    		{"generic", "wrong-namespace", "local", "", "", ""},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top