Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for 0x00000010 (0.21 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

        private static int[] SP6 = { 0x20000010, 0x20400000, 0x00004000, 0x20404010, 0x20400000, 0x00000010, 0x20404010, 0x00400000, 0x20004000,
                0x00404010, 0x00400000, 0x20000010, 0x00400010, 0x20004000, 0x20000000, 0x00004010, 0x00000000, 0x00400010, 0x20004010,
                0x00004000, 0x00404000, 0x20004010, 0x00000010, 0x20400010, 0x20400010, 0x00000000, 0x00404010, 0x20404000, 0x00004010,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/DcerpcMessageTest.java

                verify(mockBuffer, times(2)).enc_ndr_small(0); // minor version and ptype (both are 0)
                verify(mockBuffer).enc_ndr_small(DcerpcConstants.RPC_C_PF_BROADCAST); // flags
                verify(mockBuffer).enc_ndr_long(0x00000010); // Little-endian / ASCII / IEEE
                verify(mockBuffer).enc_ndr_short(message.length);
                verify(mockBuffer, times(1)).enc_ndr_short(0); // auth_value length
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/ACETest.java

                assertEquals(0x00000020, ACE.FILE_EXECUTE, "FILE_EXECUTE should be 0x00000020");
                assertEquals(0x00000040, ACE.FILE_DELETE, "FILE_DELETE should be 0x00000040");
                assertEquals(0x00000080, ACE.FILE_READ_ATTRIBUTES, "FILE_READ_ATTRIBUTES should be 0x00000080");
                assertEquals(0x00000100, ACE.FILE_WRITE_ATTRIBUTES, "FILE_WRITE_ATTRIBUTES should be 0x00000100");
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        private static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
        private static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004;
        private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
        private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010;
        private static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x00000020;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Write DAC access right */
        int WRITE_DAC = 0x00040000; // 18
        /** Write owner access right */
        int WRITE_OWNER = 0x00080000; // 19
        /** Synchronize access right */
        int SYNCHRONIZE = 0x00100000; // 20
        /** Generic all access right */
        int GENERIC_ALL = 0x10000000; // 28
        /** Generic execute access right */
        int GENERIC_EXECUTE = 0x20000000; // 29
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/SmbConstantsTest.java

            assertEquals(0x00000080, SmbConstants.FILE_READ_ATTRIBUTES);
            assertEquals(0x00000100, SmbConstants.FILE_WRITE_ATTRIBUTES);
            assertEquals(0x00010000, SmbConstants.DELETE);
            assertEquals(0x00020000, SmbConstants.READ_CONTROL);
            assertEquals(0x00040000, SmbConstants.WRITE_DAC);
            assertEquals(0x00080000, SmbConstants.WRITE_OWNER);
            assertEquals(0x00100000, SmbConstants.SYNCHRONIZE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/FileNotifyInformationTest.java

                verify(mockFileNotifyInfo, times(1)).getFileName();
            }
    
            @ParameterizedTest
            @ValueSource(ints = { 0x00000001, 0x00000002, 0x00000003, 0x00000004, 0x00000005, 0x00000006, 0x00000007, 0x00000008, 0x00000009 })
            @DisplayName("Test getAction with various action values")
            void testGetActionWithVariousValues(int actionValue) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java

            int[] attributes = { 0x00000001, // FILE_ATTRIBUTE_READONLY
                    0x00000002, // FILE_ATTRIBUTE_HIDDEN
                    0x00000004, // FILE_ATTRIBUTE_SYSTEM
                    0x00000010, // FILE_ATTRIBUTE_DIRECTORY
                    0x00000020, // FILE_ATTRIBUTE_ARCHIVE
                    0x00000080, // FILE_ATTRIBUTE_NORMAL
                    0x00000100, // FILE_ATTRIBUTE_TEMPORARY
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbConstants.java

        int WRITE_OWNER = 0x00080000; // 19
        /**
         * Permission to synchronize.
         */
        int SYNCHRONIZE = 0x00100000; // 20
        /**
         * All generic permissions.
         */
        int GENERIC_ALL = 0x10000000; // 28
        /**
         * Generic execute permission.
         */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * Generic write permission.
         */
        int GENERIC_WRITE = 0x40000000; // 30
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

        private static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
        private static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004;
        private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
        private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010;
    
        /**
         * Change notification handle
         */
        public static class ChangeNotificationHandle {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
Back to top