Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for init (0.16 sec)

  1. src/main/java/jcifs/internal/dtyp/ACE.java

        }
    
    
        @Override
        public int getAccessMask () {
            return this.access;
        }
    
    
        @Override
        public SID getSID () {
            return this.sid;
        }
    
    
        @Override
        public int decode ( byte[] buf, int bi, int len ) {
            this.allow = buf[ bi++ ] == (byte) 0x00;
            this.flags = buf[ bi++ ] & 0xFF;
            int size = SMBUtil.readInt2(buf, bi);
            bi += 2;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int FILE_EXECUTE = 0x00000020; // 6
        /**
         * 
         */
        public static final int FILE_DELETE = 0x00000040; // 7
        /**
         * 
         */
        public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /**
         * 
         */
        public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /**
         * 
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int FILE_READ_ATTRIBUTES  = 0x00000080; // 8
        public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        public static final int DELETE                = 0x00010000; // 16
        public static final int READ_CONTROL          = 0x00020000; // 17
        public static final int WRITE_DAC             = 0x00040000; // 18
        public static final int WRITE_OWNER           = 0x00080000; // 19
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
Back to top