Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 0x070B3 (0.08 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	0x0000, 0x0028, 0x0000, 0x002a, 0x0000, 0x002c, 0x0000, 0x0000,
    	0x002f, 0x002e, 0x002e, 0x0000, 0x0033, 0x0000, 0x0035, 0x0000,
    	0x0037, 0x0000, 0x0039, 0x0000, 0x003b, 0x0000, 0x0000, 0x003e,
    	// Entry 40 - 7F
    	0x0000, 0x0040, 0x0040, 0x0000, 0x0043, 0x0043, 0x0000, 0x0046,
    	0x0000, 0x0048, 0x0000, 0x0000, 0x004b, 0x004a, 0x004a, 0x0000,
    	0x004f, 0x004f, 0x004f, 0x004f, 0x0000, 0x0054, 0x0054, 0x0000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/syscall/const_plan9.go

    package syscall
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Bind flags
    const (
    	MORDER  = 0x0003 // mask for bits defining order of mounting
    	MREPL   = 0x0000 // mount replaces object
    	MBEFORE = 0x0001 // mount goes before others in union directory
    	MAFTER  = 0x0002 // mount goes after others in union directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    // least-significant bits of the rune).
    //
    // See the definitions below for a more detailed description of the various
    // bits.
    type info uint16
    
    const (
    	casedMask      = 0x0003
    	fullCasedMask  = 0x0007
    	ignorableMask  = 0x0006
    	ignorableValue = 0x0004
    
    	inverseFoldBit = 1 << 7
    	isMidBit       = 1 << 6
    
    	exceptionBit     = 1 << 3
    	exceptionShift   = 4
    	numExceptionBits = 12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/crypto/internal/hpke/hpke.go

    	nonceSize int
    	aead      func([]byte) (cipher.AEAD, error)
    }{
    	// RFC 9180, Section 7.3
    	0x0001: {keySize: 16, nonceSize: 12, aead: aesGCMNew},
    	0x0002: {keySize: 32, nonceSize: 12, aead: aesGCMNew},
    	0x0003: {keySize: chacha20poly1305.KeySize, nonceSize: chacha20poly1305.NonceSize, aead: chacha20poly1305.New},
    }
    
    var SupportedKDFs = map[uint16]func() *hkdfKDF{
    	// RFC 9180, Section 7.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top