Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for minVersion (0.2 sec)

  1. api/go1.2.txt

    pkg crypto/tls, const VersionTLS11 ideal-int
    pkg crypto/tls, const VersionTLS12 = 771
    pkg crypto/tls, const VersionTLS12 ideal-int
    pkg crypto/tls, type Config struct, MaxVersion uint16
    pkg crypto/tls, type Config struct, MinVersion uint16
    pkg crypto/x509, func MarshalECPrivateKey(*ecdsa.PrivateKey) ([]uint8, error)
    pkg crypto/x509, type Certificate struct, CRLDistributionPoints []string
    pkg crypto/x509, type Certificate struct, Extensions []pkix.Extension
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  2. src/archive/tar/strconv.go

    	// complement encoded number in big-endian byte order.
    	if len(b) > 0 && b[0]&0x80 != 0 {
    		// Handling negative numbers relies on the following identity:
    		//	-a-1 == ^a
    		//
    		// If the number is negative, we use an inversion mask to invert the
    		// data bytes and treat the value as an unsigned number.
    		var inv byte // 0x00 if positive or zero, 0xff if negative
    		if b[0]&0x40 != 0 {
    			inv = 0xff
    		}
    
    		var x uint64
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
Back to top