Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 146 for 0x0004 (0.12 sec)

  1. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java

     * 
     */
    public class Trans2GetDfsReferralResponse extends SmbComTransactionResponse {
    
        /**
         * 
         */
        public static final int FLAGS_NAME_LIST_REFERRAL = 0x0002;
        /**
         * 
         */
        public static final int FLAGS_TARGET_SET_BOUNDARY = 0x0004;
        /**
         * 
         */
        public static final int TYPE_ROOT_TARGETS = 0x0;
        /**
         * 
         */
        public static final int TYPE_NON_ROOT_TARGETS = 0x1;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadpe/ldpe.go

    	IMAGE_REL_ARM_BRANCH11           = 0x0004
    	IMAGE_REL_ARM_SECTION            = 0x000E
    	IMAGE_REL_ARM_SECREL             = 0x000F
    	IMAGE_REL_ARM_MOV32              = 0x0010
    	IMAGE_REL_THUMB_MOV32            = 0x0011
    	IMAGE_REL_THUMB_BRANCH20         = 0x0012
    	IMAGE_REL_THUMB_BRANCH24         = 0x0014
    	IMAGE_REL_THUMB_BLX23            = 0x0015
    	IMAGE_REL_ARM_PAIR               = 0x0016
    	IMAGE_REL_ARM64_ABSOLUTE         = 0x0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. src/debug/pe/pe.go

    const (
    	IMAGE_FILE_RELOCS_STRIPPED         = 0x0001
    	IMAGE_FILE_EXECUTABLE_IMAGE        = 0x0002
    	IMAGE_FILE_LINE_NUMS_STRIPPED      = 0x0004
    	IMAGE_FILE_LOCAL_SYMS_STRIPPED     = 0x0008
    	IMAGE_FILE_AGGRESIVE_WS_TRIM       = 0x0010
    	IMAGE_FILE_LARGE_ADDRESS_AWARE     = 0x0020
    	IMAGE_FILE_BYTES_REVERSED_LO       = 0x0080
    	IMAGE_FILE_32BIT_MACHINE           = 0x0100
    	IMAGE_FILE_DEBUG_STRIPPED          = 0x0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 01:21:43 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	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,
    	0x0057, 0x0000, 0x0059, 0x0000, 0x005b, 0x0000, 0x005d, 0x005d,
    	0x0000, 0x0060, 0x0000, 0x0062, 0x0000, 0x0064, 0x0000, 0x0066,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_LANG_Modula2     = 0x000a
    	// Dwarf3
    	DW_LANG_Java           = 0x000b
    	DW_LANG_C99            = 0x000c
    	DW_LANG_Ada95          = 0x000d
    	DW_LANG_Fortran95      = 0x000e
    	DW_LANG_PLI            = 0x000f
    	DW_LANG_ObjC           = 0x0010
    	DW_LANG_ObjC_plus_plus = 0x0011
    	DW_LANG_UPC            = 0x0012
    	DW_LANG_D              = 0x0013
    	// Dwarf4
    	DW_LANG_Python = 0x0014
    	// Dwarf5
    	DW_LANG_Go = 0x0016
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  6. src/runtime/mem_windows.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"unsafe"
    )
    
    const (
    	_MEM_COMMIT   = 0x1000
    	_MEM_RESERVE  = 0x2000
    	_MEM_DECOMMIT = 0x4000
    	_MEM_RELEASE  = 0x8000
    
    	_PAGE_READWRITE = 0x0004
    	_PAGE_NOACCESS  = 0x0001
    
    	_ERROR_NOT_ENOUGH_MEMORY = 8
    	_ERROR_COMMITMENT_LIMIT  = 1455
    )
    
    // Don't split the stack as this function may be invoked without a valid G,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. 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
    
    	xorIndexBit = 1 << 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/syscall/fs_wasip1.go

    }
    
    const (
    	LOOKUP_SYMLINK_FOLLOW = 0x00000001
    )
    
    const (
    	OFLAG_CREATE    = 0x0001
    	OFLAG_DIRECTORY = 0x0002
    	OFLAG_EXCL      = 0x0004
    	OFLAG_TRUNC     = 0x0008
    )
    
    const (
    	FDFLAG_APPEND   = 0x0001
    	FDFLAG_DSYNC    = 0x0002
    	FDFLAG_NONBLOCK = 0x0004
    	FDFLAG_RSYNC    = 0x0008
    	FDFLAG_SYNC     = 0x0010
    )
    
    const (
    	RIGHT_FD_DATASYNC = 1 << iota
    	RIGHT_FD_READ
    	RIGHT_FD_SEEK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	DNS_TYPE_TEXT    = 0x0010
    	DNS_TYPE_RP      = 0x0011
    	DNS_TYPE_AFSDB   = 0x0012
    	DNS_TYPE_X25     = 0x0013
    	DNS_TYPE_ISDN    = 0x0014
    	DNS_TYPE_RT      = 0x0015
    	DNS_TYPE_NSAP    = 0x0016
    	DNS_TYPE_NSAPPTR = 0x0017
    	DNS_TYPE_SIG     = 0x0018
    	DNS_TYPE_KEY     = 0x0019
    	DNS_TYPE_PX      = 0x001a
    	DNS_TYPE_GPOS    = 0x001b
    	DNS_TYPE_AAAA    = 0x001c
    	DNS_TYPE_LOC     = 0x001d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

     */
    final class AnsiConsoleUtil {
        private static final int ENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004;
        private static final int DISABLE_NEWLINE_AUTO_RETURN = 0x0008;
    
        private static final boolean IS_XTERM = environmentVariableStartsWith("TERM", "xterm");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top