Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for 0x0004 (0.15 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FLAGS2_UNICODE                       = 0x8000;
    
        static final int CAP_NONE             = 0x0000;
        static final int CAP_RAW_MODE         = 0x0001;
        static final int CAP_MPX_MODE         = 0x0002;
        static final int CAP_UNICODE          = 0x0004;
        static final int CAP_LARGE_FILES      = 0x0008;
        static final int CAP_NT_SMBS          = 0x0010;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    	STATMAX    = 65535
    	ERRMAX     = 128
    	STATFIXLEN = 49
    )
    
    // Mount and bind flags
    const (
    	MREPL   = 0x0000
    	MBEFORE = 0x0001
    	MAFTER  = 0x0002
    	MORDER  = 0x0003
    	MCREATE = 0x0004
    	MCACHE  = 0x0010
    	MMASK   = 0x0017
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  3. src/syscall/const_plan9.go

    	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
    	MCREATE = 0x0004 // permit creation in mounted directory
    	MCACHE  = 0x0010 // cache some data
    	MMASK   = 0x0017 // all bits on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbConstants.java

        static final int FLAGS2_STATUS32 = 0x4000;
        static final int FLAGS2_UNICODE = 0x8000;
    
        static final int CAP_NONE = 0x0000;
        static final int CAP_RAW_MODE = 0x0001;
        static final int CAP_MPX_MODE = 0x0002;
        static final int CAP_UNICODE = 0x0004;
        static final int CAP_LARGE_FILES = 0x0008;
        static final int CAP_NT_SMBS = 0x0010;
        static final int CAP_RPC_REMOTE_APIS = 0x0020;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    	version(3.0)
    ]
    interface netdfs
    {
    	import "../rpc.idl";
    
    	const uint32_t DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
    	const uint32_t DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
    
    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    	typedef struct {
    		uint32_t count;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/netdfs.idl

    	version(3.0)
    ]
    interface netdfs
    {
    	import "../rpc.idl";
    
    	const uint32_t DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
    	const uint32_t DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
    
    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    	typedef struct {
    		uint32_t count;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top