Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for GENERIC_EXECUTE (0.08 sec)

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

                assertTrue(ACE.GENERIC_EXECUTE > 0, "GENERIC_EXECUTE should be positive");
                assertTrue(ACE.GENERIC_WRITE > 0, "GENERIC_WRITE should be positive");
    
                // Test ordering (corrected for actual bit values)
                assertTrue(ACE.GENERIC_ALL < ACE.GENERIC_EXECUTE, "GENERIC_ALL should be less than GENERIC_EXECUTE");
    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/ACE.java

         */
        int SYNCHRONIZE = 0x00100000; // 20
        /**
         * Generic all permissions
         */
        int GENERIC_ALL = 0x10000000; // 28
        /**
         * Generic execute permission
         */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * Generic write permission
         */
        int GENERIC_WRITE = 0x40000000; // 30
        /**
         * Generic read permission
         */
        int GENERIC_READ = 0x80000000; // 31
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** 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
        /** Generic write access right */
        int GENERIC_WRITE = 0x40000000; // 30
        /** Generic read access right */
        int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/SmbConstantsTest.java

            assertEquals(0x00080000, SmbConstants.WRITE_OWNER);
            assertEquals(0x00100000, SmbConstants.SYNCHRONIZE);
            assertEquals(0x10000000, SmbConstants.GENERIC_ALL);
            assertEquals(0x20000000, SmbConstants.GENERIC_EXECUTE);
            assertEquals(0x40000000, SmbConstants.GENERIC_WRITE);
            assertEquals(0x80000000, SmbConstants.GENERIC_READ);
        }
    
        @Test
        @DisplayName("Should define share access constants")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int SYNCHRONIZE = 0x00100000; // 20
        /** Generic all permissions */
        public static final int GENERIC_ALL = 0x10000000; // 28
        /** Generic execute permission */
        public static final int GENERIC_EXECUTE = 0x20000000; // 29
        /** Generic write permission */
        public static final int GENERIC_WRITE = 0x40000000; // 30
        /** Generic read permission */
        public static final int GENERIC_READ = 0x80000000; // 31
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/dtyp/ACETest.java

                0x00040000, // WRITE_DAC
                0x00080000, // WRITE_OWNER
                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;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbConstants.java

         */
        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
        /**
         * Generic read permission.
         */
        int GENERIC_READ = 0x80000000; // 31
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

            else if (hasReadAccess) {
                return Smb2LeaseState.SMB2_LEASE_READ_HANDLE; // Read + Handle
            }
            // For execute or other special access, use minimal lease
            else if ((access & (GENERIC_EXECUTE | FILE_EXECUTE)) != 0) {
                return Smb2LeaseState.SMB2_LEASE_READ_CACHING; // Read only
            }
            // Default to read + handle for unspecified access
            else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top