Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for 0x070D2 (0.98 sec)

  1. src/internal/syscall/unix/getrandom_freebsd.go

    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)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    	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;
    		[size_is(count)] DfsInfo1 *s;
    	} DfsEnumArray1;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    	IMAGE_REL_ARM_ADDR32NB           = 0x0002
    	IMAGE_REL_ARM_BRANCH24           = 0x0003
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbConstants.java

        static final int FLAGS_RESPONSE = 0x80;
    
        static final int FLAGS2_NONE = 0x0000;
        static final int FLAGS2_LONG_FILENAMES = 0x0001;
        static final int FLAGS2_EXTENDED_ATTRIBUTES = 0x0002;
        static final int FLAGS2_SECURITY_SIGNATURES = 0x0004;
        static final int FLAGS2_SECURITY_REQUIRE_SIGNATURES = 0x0010;
        static final int FLAGS2_EXTENDED_SECURITY_NEGOTIATION = 0x0800;
    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/syscall/const_plan9.go

    )
    
    // 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
    )
    
    // Rfork flags
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndXResponse.java

    class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock {
    
        private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001;
        private static final int SMB_SHARE_IS_IN_DFS     = 0x0002;
    
        boolean supportSearchBits, shareIsInDfs;
        String service, nativeFileSystem = "";
    
        SmbComTreeConnectAndXResponse( ServerMessageBlock andx ) {
            super( andx );
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.9K 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;
        /**
         * 
         */
    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/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPOLL_CLOEXEC            = 0x00001000
    	EPOLL_CTL_ADD            = 0
    	EPOLL_CTL_MOD            = 1
    	EPOLL_CTL_DEL            = 2
    	EPOLLRDNORM              = 0x0001
    	EPOLLRDBAND              = 0x0002
    	EPOLLIN                  = 0x0003
    	EPOLLOUT                 = 0x0004
    	EPOLLWRBAND              = 0x0008
    	EPOLLPRI                 = 0x0010
    	EPOLLERR                 = 0x0020
    	EPOLLHUP                 = 0x0040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

     */
    public class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock implements TreeConnectResponse {
    
        private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001;
        private static final int SMB_SHARE_IS_IN_DFS = 0x0002;
    
        private boolean supportSearchBits, shareIsInDfs;
        private String service, nativeFileSystem = "";
    
    
        /**
         * 
         * @param config
         * @param andx
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  10. src/debug/pe/pe.go

    	IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14
    )
    
    // Values of IMAGE_FILE_HEADER.Characteristics. These can be combined together.
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 01:21:43 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top