Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 0x8000 (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CLONE_PTRACE                                = 0x2000
    	CLONE_SETTLS                                = 0x80000
    	CLONE_SIGHAND                               = 0x800
    	CLONE_SYSVSEM                               = 0x40000
    	CLONE_THREAD                                = 0x10000
    	CLONE_UNTRACED                              = 0x800000
    	CLONE_VFORK                                 = 0x4000
    	CLONE_VM                                    = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ECHOKE                           = 0x800
    	ECHONL                           = 0x40
    	ECHOPRT                          = 0x400
    	EFD_CLOEXEC                      = 0x80000
    	EFD_NONBLOCK                     = 0x800
    	EPOLL_CLOEXEC                    = 0x80000
    	EXTPROC                          = 0x10000
    	FF1                              = 0x8000
    	FFDLY                            = 0x8000
    	FICLONE                          = 0x40049409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	MAP_DENYWRITE                    = 0x800
    	MAP_EXECUTABLE                   = 0x1000
    	MAP_GROWSDOWN                    = 0x100
    	MAP_HUGETLB                      = 0x40000
    	MAP_LOCKED                       = 0x2000
    	MAP_NONBLOCK                     = 0x10000
    	MAP_NORESERVE                    = 0x4000
    	MAP_POPULATE                     = 0x8000
    	MAP_STACK                        = 0x20000
    	MAP_SYNC                         = 0x80000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	ECHOKE                           = 0x800
    	ECHONL                           = 0x40
    	ECHOPRT                          = 0x400
    	EFD_CLOEXEC                      = 0x80000
    	EFD_NONBLOCK                     = 0x800
    	EPOLL_CLOEXEC                    = 0x80000
    	EXTPROC                          = 0x10000
    	FF1                              = 0x8000
    	FFDLY                            = 0x8000
    	FICLONE                          = 0x40049409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Domainname [65]byte
    }
    
    const (
    	AT_EMPTY_PATH   = 0x1000
    	AT_FDCWD        = -0x64
    	AT_NO_AUTOMOUNT = 0x800
    	AT_REMOVEDIR    = 0x200
    
    	AT_STATX_SYNC_AS_STAT = 0x0
    	AT_STATX_FORCE_SYNC   = 0x2000
    	AT_STATX_DONT_SYNC    = 0x4000
    
    	AT_RECURSIVE = 0x8000
    
    	AT_SYMLINK_FOLLOW   = 0x400
    	AT_SYMLINK_NOFOLLOW = 0x100
    
    	AT_EACCESS = 0x200
    
    	OPEN_TREE_CLONE = 0x1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/link/internal/ld/data.go

    		// GOT section is present, compute it as suggested by the ELFv2 ABI. Otherwise,
    		// choose a similar offset from the start of the data segment.
    		tocAddr := int64(Segdata.Vaddr) + 0x8000
    		if gotAddr := ldr.SymValue(ctxt.GOT); gotAddr != 0 {
    			tocAddr = gotAddr + 0x8000
    		}
    		for i := range ctxt.DotTOC {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestSimpleError(t *testing.T) {
    	testClientHelloFailure(t, testConfig, &serverHelloDoneMsg{}, "unexpected handshake message")
    }
    
    var badProtocolVersions = []uint16{0x0000, 0x0005, 0x0100, 0x0105, 0x0200, 0x0205, VersionSSL30}
    
    func TestRejectBadProtocolVersion(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionSSL30
    	for _, v := range badProtocolVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    func appendHex(b []byte, x uint16) []byte {
    	// Using this function rather than strconv.AppendUint makes IPv6
    	// string building 2x faster.
    
    	if x >= 0x1000 {
    		b = append(b, digits[x>>12])
    	}
    	if x >= 0x100 {
    		b = append(b, digits[x>>8&0xf])
    	}
    	if x >= 0x10 {
    		b = append(b, digits[x>>4&0xf])
    	}
    	return append(b, digits[x&0xf])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	http2cipher_TLS_NULL_WITH_NULL_NULL               uint16 = 0x0000
    	http2cipher_TLS_RSA_WITH_NULL_MD5                 uint16 = 0x0001
    	http2cipher_TLS_RSA_WITH_NULL_SHA                 uint16 = 0x0002
    	http2cipher_TLS_RSA_EXPORT_WITH_RC4_40_MD5        uint16 = 0x0003
    	http2cipher_TLS_RSA_WITH_RC4_128_MD5              uint16 = 0x0004
    	http2cipher_TLS_RSA_WITH_RC4_128_SHA              uint16 = 0x0005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top