Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for 0x00000005 (0.3 sec)

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

        static final int DELETE = 0x00010000; // 16
        static final int READ_CONTROL = 0x00020000; // 17
        static final int WRITE_DAC = 0x00040000; // 18
        static final int WRITE_OWNER = 0x00080000; // 19
        static final int SYNCHRONIZE = 0x00100000; // 20
        static final int GENERIC_ALL = 0x10000000; // 28
        static final int GENERIC_EXECUTE = 0x20000000; // 29
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        /**
        * Indicates that 128-bit encryption is supported.
        */
        public static final int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        public static final int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
        * Indicates that 56-bit encryption is supported.
        */
        public static final int NTLMSSP_NEGOTIATE_56 = 0x80000000;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  3. src/internal/xcoff/file_test.go

    			{".dwinfo", 0x00000000, 0x0000036a, STYP_DWARF | SSUBTYP_DWINFO, 0x8838, 0x7},
    			{".dwabrev", 0x00000000, 0x000000b5, STYP_DWARF | SSUBTYP_DWABREV, 0, 0},
    			{".dwarnge", 0x00000000, 0x00000040, STYP_DWARF | SSUBTYP_DWARNGE, 0x889a, 0x2},
    			{".dwloc", 0x00000000, 0x00000062, STYP_DWARF | SSUBTYP_DWLOC, 0, 0},
    			{".debug", 0x00000000, 0x00006605, STYP_DEBUG, 0, 0},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
         * Indicates whether OEM strings are supported or used.
         */
        public static final int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    
        /**
         * Indicates whether the authentication target is requested from
         * the server.
         */
        public static final int NTLMSSP_REQUEST_TARGET = 0x00000004;
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  5. src/math/hypot_386.s

    	ANDL    $0x7fffffff, AX
    	CMPL    AX, $0x7ff00000
    	JEQ     is_inf
    	MOVL    $0x7ff80000, ret_hi+20(FP)  // return NaN = 0x7FF8000000000001
    	MOVL    $0x00000001, ret_lo+16(FP)
    	RET
    is_inf:
    	MOVL    AX, ret_hi+20(FP)  // return +Inf = 0x7FF0000000000000
    	MOVL    $0x00000000, ret_lo+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_GROUP_MANDATORY          = 0x00000001
    	SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002
    	SE_GROUP_ENABLED            = 0x00000004
    	SE_GROUP_OWNER              = 0x00000008
    	SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010
    	SE_GROUP_INTEGRITY          = 0x00000020
    	SE_GROUP_INTEGRITY_ENABLED  = 0x00000040
    	SE_GROUP_LOGON_ID           = 0xC0000000
    	SE_GROUP_RESOURCE           = 0x20000000
    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/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s

    DATA	·constants+0x08(SB)/4, $0x79622d32
    DATA	·constants+0x0c(SB)/4, $0x6b206574
    GLOBL	·constants(SB), NOPTR|RODATA, $32
    
    DATA	·incRotMatrix+0x00(SB)/4, $0x00000000
    DATA	·incRotMatrix+0x04(SB)/4, $0x00000001
    DATA	·incRotMatrix+0x08(SB)/4, $0x00000002
    DATA	·incRotMatrix+0x0c(SB)/4, $0x00000003
    DATA	·incRotMatrix+0x10(SB)/4, $0x02010003
    DATA	·incRotMatrix+0x14(SB)/4, $0x06050407
    DATA	·incRotMatrix+0x18(SB)/4, $0x0A09080B
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite_test.go

    	}
    }
    
    func TestIsPPC64WordRotateMask(t *testing.T) {
    	tests := []struct {
    		input    int64
    		expected bool
    	}{
    		{0x00000001, true},
    		{0x80000001, true},
    		{0x80010001, false},
    		{0xFFFFFFFA, false},
    		{0xF0F0F0F0, false},
    		{0xFFFFFFFD, true},
    		{0x80000000, true},
    		{0x00000000, false},
    		{0xFFFFFFFF, true},
    		{0x0000FFFF, true},
    		{0xFF0000FF, true},
    		{0x00FFFF00, true},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         * 
         */
        public static final int SMB2_FLAGS_SERVER_TO_REDIR = 0x00000001;
        /**
         * 
         */
        public static final int SMB2_FLAGS_ASYNC_COMMAND = 0x00000002;
        /**
         * 
         */
        public static final int SMB2_FLAGS_RELATED_OPERATIONS = 0x00000004;
        /**
         * 
         */
        public static final int SMB2_FLAGS_SIGNED = 0x00000008;
        /**
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

        static final int FILE_OVERWRITE_IF = 0x5;
    
    
        // create options
        static final int FILE_WRITE_THROUGH           = 0x00000002;
        static final int FILE_SEQUENTIAL_ONLY         = 0x00000004;
        static final int FILE_SYNCHRONOUS_IO_ALERT    = 0x00000010;
        static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020;
    
        // security flags
        static final int SECURITY_CONTEXT_TRACKING = 0x01;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.6K bytes
    - Viewed (0)
Back to top