Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for xtls (0.05 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 (0)
  2. src/crypto/x509/x509_test.go

    				ac:6f:6b:39:03:85:5e:63:4b:f8:a6:0f:68:c6:6f:
    				75:21
    	X509v3 extensions:
    		X509v3 Key Usage: critical
    			Digital Signature, Certificate Sign, CRL Sign
    		X509v3 Extended Key Usage:
    			TLS Web Client Authentication, TLS Web Server Authentication, OCSP Signing
    		X509v3 Basic Constraints: critical
    			CA:TRUE
    		X509v3 Subject Key Identifier:
    			B7:17:DA:16:EA:C5:ED:1F:18:49:44:D3:D2:E3:A0:35:0A:81:93:60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: etcd internal port
    # $3: whether etcd communication should use mtls
    # returns the result of ssh command which adds replica
    function add-replica-to-etcd() {
      local -r client_port="${1}"
      local -r internal_port="${2}"
      local -r use_mtls="${3}"
    
      TLSARG=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	sdktrace "go.opentelemetry.io/otel/sdk/trace"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    			c.instoffset = a.Offset
    			if a.Sym == nil {
    				break
    			} else if a.Sym.Type == objabi.STLSBSS {
    				// For PIC builds, use 12 byte got initial-exec TLS accesses.
    				if c.ctxt.Flag_shared {
    					return C_TLS_IE
    				}
    				// Otherwise, use 8 byte local-exec TLS accesses.
    				return C_TLS_LE
    			} else {
    				return C_ADDR
    			}
    
    		case obj.NAME_AUTO:
    			a.Reg = REGSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    }
    
    func newm1(mp *m) {
    	if iscgo {
    		var ts cgothreadstart
    		if _cgo_thread_start == nil {
    			throw("_cgo_thread_start missing")
    		}
    		ts.g.set(mp.g0)
    		ts.tls = (*uint64)(unsafe.Pointer(&mp.tls[0]))
    		ts.fn = unsafe.Pointer(abi.FuncPCABI0(mstart))
    		if msanenabled {
    			msanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		if asanenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		currentTime:   1558051200,
    		dnsName:       "tm.cn",
    
    		// CryptoAPI can find alternative validation paths.
    		systemLax: true,
    
    		expectedChains: [][]string{
    			{
    				"tm.cn",
    				"TrustAsia ECC OV TLS Pro CA",
    				"DigiCert Global Root CA",
    			},
    		},
    	},
    	{
    		// Putting a certificate as a root directly should work as a
    		// way of saying “exactly this”.
    		name:        "LeafInRoots",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Prefix string
    	Val    AST
    }
    
    func (s *Special) print(ps *printState) {
    	prefix := s.Prefix
    	if ps.llvmStyle {
    		switch prefix {
    		case "TLS wrapper function for ":
    			prefix = "thread-local wrapper routine for "
    		case "TLS init function for ":
    			prefix = "thread-local initialization routine for "
    		}
    	}
    	ps.writeString(prefix)
    	ps.print(s.Val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

            .build()
        val response = get(url)
        assertThat(response.body.string()).isEqualTo(entryBody)
        assertThat(response.header("Content-Length")).isEqualTo("3")
      }
    
      /** The TLS version is present in OkHttp 3.0 and beyond.  */
      @Test
      fun testGoldenCacheHttpsResponseOkHttp30() {
        val url = server.url("/")
        val urlKey = key(url)
        val prefix = get().getPrefix()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    _�_�Y�K���vf��L�t��O%E��'�+������b�x\fu�: �'��b�|䱖a׾���Y�K�v�vC��]��ç�­���L�XT@w�^Z��M�C>b5��+���u����_}i���uԭ��7�S��j���G�}/�n�X��O����N��rl���}7z��cl@�a�Y�VH������7��ɾ�dr8,���ΕQK>$���I����c�_�%e]s�����A���W�G�_�ꮞ��?�W�T+�c�Q�vU�K-����N��v�M�D��nud�������Ɣ� )}>�P���'�qʼ�y�P6��!��睫�Ag:a{~��b9ע\����,��J��RPx^iᕖ�WZ�kw��۟���:x�:��&�AV.�~˫]��E!Leт�L[���y��(�/כo����4w]��J"��"q��!�����=�`/ϥ[}c����p��F>ujfכ��sxK*e,z=���x?IgJ��5��-�����k�g*B�1��Tp6 (�,5�R ��@p��j��d�PZ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
Back to top