Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 203 for gbyte (0.22 sec)

  1. src/crypto/tls/tls_test.go

    	}
    }
    
    func TestX509MixedKeyPair(t *testing.T) {
    	if _, err := X509KeyPair([]byte(rsaCertPEM), []byte(ecdsaKeyPEM)); err == nil {
    		t.Error("Load of RSA certificate succeeded with ECDSA private key")
    	}
    	if _, err := X509KeyPair([]byte(ecdsaCertPEM), []byte(rsaKeyPEM)); err == nil {
    		t.Error("Load of ECDSA certificate succeeded with RSA private key")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
    	var plaintext []byte
    	typ := recordType(record[0])
    	payload := record[recordHeaderLen:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Readlink(path string, buf []byte) (n int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	if len(buf) > 0 {
    		_p1 = &buf[0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
    	var _p0 unsafe.Pointer
    	if len(mib) > 0 {
    		_p0 = unsafe.Pointer(&mib[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
    	var _p0 unsafe.Pointer
    	if len(mib) > 0 {
    		_p0 = unsafe.Pointer(&mib[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
    	var _p0 unsafe.Pointer
    	if len(mib) > 0 {
    		_p0 = unsafe.Pointer(&mib[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. internal/s3select/select_test.go

    			}
    		})
    	}
    }
    
    func TestCSVQueries2(t *testing.T) {
    	testInput := []byte(`id,time,num,num2,text
    1,2010-01-01T,7867786,4565.908123,"a text, with comma"
    2,2017-01-02T03:04Z,-5, 0.765111,
    `)
    	testTable := []struct {
    		name       string
    		query      string
    		input      []byte
    		requestXML []byte // override request XML
    		wantResult string
    	}{
    		{
    			name:       "select-all",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils_gen.go

    // MarshalMsg implements msgp.Marshaler
    func (z ReplicateDecision) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 0
    	_ = z
    	o = append(o, 0x80)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *ReplicateDecision) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	Raw                     []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
    	RawTBSCertificate       []byte // Certificate part of raw ASN.1 DER content.
    	RawSubjectPublicKeyInfo []byte // DER encoded SubjectPublicKeyInfo.
    	RawSubject              []byte // DER encoded Subject
    	RawIssuer               []byte // DER encoded Issuer
    
    	Signature          []byte
    	SignatureAlgorithm SignatureAlgorithm
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    }
    
    func testSCTHandshake(t *testing.T, version uint16) {
    	expected := [][]byte{[]byte("certificate"), []byte("transparency")}
    	serverConfig := &Config{
    		Certificates: []Certificate{{
    			Certificate:                 [][]byte{testRSACertificate},
    			PrivateKey:                  testRSAPrivateKey,
    			SignedCertificateTimestamps: expected,
    		}},
    		MaxVersion: version,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top