Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GENERIC_READ (0.05 sec)

  1. src/test/java/jcifs/ACETest.java

            void shouldHandleSignedUnsignedBoundaries() {
                // Test that GENERIC_READ is the highest bit (0x80000000)
                assertEquals(0x80000000, ACE.GENERIC_READ, "GENERIC_READ should be 0x80000000");
                assertTrue(ACE.GENERIC_READ < 0, "GENERIC_READ should be negative when treated as signed int");
    
                // Test that other generic rights are positive
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Generic execute access right */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /** Generic write access right */
        int GENERIC_WRITE = 0x40000000; // 30
        /** Generic read access right */
        int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
        /** Target must be file flag */
        int FLAGS_TARGET_MUST_BE_FILE = 0x0001;
        /** Target must be directory flag */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SmbConstantsTest.java

            assertEquals(0x20000000, SmbConstants.GENERIC_EXECUTE);
            assertEquals(0x40000000, SmbConstants.GENERIC_WRITE);
            assertEquals(0x80000000, SmbConstants.GENERIC_READ);
        }
    
        @Test
        @DisplayName("Should define share access constants")
        void testShareAccessConstants() {
            assertEquals(0x00, SmbConstants.FILE_NO_SHARE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/dtyp/ACETest.java

                0x00100000, // SYNCHRONIZE
                0x10000000, // GENERIC_ALL
                0x20000000, // GENERIC_EXECUTE
                0x40000000, // GENERIC_WRITE
                0x80000000 // GENERIC_READ (as int will be negative)
        })
        void testVariousAccessMaskValues(int accessMask) {
            ace.access = accessMask;
            assertEquals(accessMask, ace.getAccessMask());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbConstants.java

         */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * Generic write permission.
         */
        int GENERIC_WRITE = 0x40000000; // 30
        /**
         * Generic read permission.
         */
        int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
        /**
         * Target must be a file flag.
         */
        int FLAGS_TARGET_MUST_BE_FILE = 0x0001;
        /**
         * Target must be a directory flag.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top