Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for 0x0004 (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_OWNER_DEFAULTED       = 0x0001
    	SE_GROUP_DEFAULTED       = 0x0002
    	SE_DACL_PRESENT          = 0x0004
    	SE_DACL_DEFAULTED        = 0x0008
    	SE_SACL_PRESENT          = 0x0010
    	SE_SACL_DEFAULTED        = 0x0020
    	SE_DACL_AUTO_INHERIT_REQ = 0x0100
    	SE_SACL_AUTO_INHERIT_REQ = 0x0200
    	SE_DACL_AUTO_INHERITED   = 0x0400
    	SE_SACL_AUTO_INHERITED   = 0x0800
    	SE_DACL_PROTECTED        = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/tables11.0.0.go

    	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008,
    	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008,
    	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008,
    	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080,
    	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 270.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    // Flags defining the section type.
    const (
    	STYP_DWARF  = 0x0010
    	STYP_TEXT   = 0x0020
    	STYP_DATA   = 0x0040
    	STYP_BSS    = 0x0080
    	STYP_EXCEPT = 0x0100
    	STYP_INFO   = 0x0200
    	STYP_TDATA  = 0x0400
    	STYP_TBSS   = 0x0800
    	STYP_LOADER = 0x1000
    	STYP_DEBUG  = 0x2000
    	STYP_TYPCHK = 0x4000
    	STYP_OVRFLO = 0x8000
    )
    const (
    	SSUBTYP_DWINFO  = 0x10000 // DWARF info section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	   control to the program. */
    	DF_STATIC_TLS DynFlag = 0x0010 /* Indicates that the shared object or
    	   executable contains code using a static
    	   thread-local storage scheme. */
    )
    
    var dflagStrings = []intName{
    	{0x0001, "DF_ORIGIN"},
    	{0x0002, "DF_SYMBOLIC"},
    	{0x0004, "DF_TEXTREL"},
    	{0x0008, "DF_BIND_NOW"},
    	{0x0010, "DF_STATIC_TLS"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/crypto/internal/hpke/hpke.go

    }{
    	// 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
    	0x0001: func() *hkdfKDF { return &hkdfKDF{crypto.SHA256} },
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/internal/syscall/unix/getrandom_linux.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
    	GRND_RANDOM GetRandomFlag = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 391 bytes
    - Viewed (0)
  7. src/internal/syscall/unix/getrandom_dragonfly.go

    const getrandomTrap uintptr = 550
    
    const (
    	// GRND_RANDOM is only set for portability purpose, no-op on DragonFlyBSD.
    	GRND_RANDOM GetRandomFlag = 0x0001
    
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 476 bytes
    - Viewed (0)
  8. src/internal/syscall/unix/getrandom_freebsd.go

    const getrandomTrap uintptr = 563
    
    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM is only set for portability purpose, no-op on FreeBSD.
    	GRND_RANDOM GetRandomFlag = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 466 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/getrandom_solaris.go

    type GetRandomFlag uintptr
    
    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
    	GRND_RANDOM GetRandomFlag = 0x0002
    )
    
    // GetRandom calls the getrandom system call.
    func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) {
    	if len(p) == 0 {
    		return 0, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:54:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/tables15.0.0.go

    	// Entry 0 - 3F
    	0x0000, 0x0000, 0x0001, 0x0004, 0x0005, 0x0008, 0x0009, 0x000a,
    	0x000d, 0x0010, 0x0011, 0x0012, 0x0017, 0x001c, 0x0021, 0x0024,
    	0x0027, 0x002a, 0x002b, 0x002e, 0x0031, 0x0034, 0x0035, 0x0036,
    	0x0037, 0x0038, 0x0039, 0x003c, 0x003f, 0x0042, 0x0045, 0x0048,
    	0x004b, 0x004c, 0x004d, 0x0051, 0x0054, 0x0055, 0x005a, 0x005e,
    	0x0062, 0x0066, 0x006a, 0x006e, 0x0074, 0x007a, 0x0080, 0x0086,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 297.4K bytes
    - Viewed (0)
Back to top