Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for 0x0000000c (0.07 sec)

  1. 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)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcError.java

     */
    
    package jcifs.smb1.dcerpc;
    
    public interface DcerpcError {
    
        public static final int DCERPC_FAULT_OTHER            = 0x00000001;
        public static final int DCERPC_FAULT_ACCESS_DENIED    = 0x00000005;
        public static final int DCERPC_FAULT_CANT_PERFORM     = 0x000006D8;
        public static final int DCERPC_FAULT_NDR              = 0x000006F7;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcError.java

     */
    
    package jcifs.dcerpc;
    
    
    @SuppressWarnings ( "javadoc" )
    public interface DcerpcError {
    
        public static final int DCERPC_FAULT_OTHER = 0x00000001;
        public static final int DCERPC_FAULT_ACCESS_DENIED = 0x00000005;
        public static final int DCERPC_FAULT_CANT_PERFORM = 0x000006D8;
        public static final int DCERPC_FAULT_NDR = 0x000006F7;
        public static final int DCERPC_FAULT_INVALID_TAG = 0x1C000006;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	FILE_SUPPORTS_HARD_LINKS          = 0x00400000
    	FILE_SUPPORTS_OBJECT_IDS          = 0x00010000
    	FILE_SUPPORTS_OPEN_BY_FILE_ID     = 0x01000000
    	FILE_SUPPORTS_REPARSE_POINTS      = 0x00000080
    	FILE_SUPPORTS_SPARSE_FILES        = 0x00000040
    	FILE_SUPPORTS_TRANSACTIONS        = 0x00200000
    	FILE_SUPPORTS_USN_JOURNAL         = 0x02000000
    	FILE_UNICODE_ON_DISK              = 0x00000004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top