Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 30 (0.2 sec)

  1. src/main/java/jcifs/smb1/dcerpc/UUID.java

            node = new byte[6];
            node[0] = B(hex_to_bin(arr, 24, 2));
            node[1] = B(hex_to_bin(arr, 26, 2));
            node[2] = B(hex_to_bin(arr, 28, 2));
            node[3] = B(hex_to_bin(arr, 30, 2));
            node[4] = B(hex_to_bin(arr, 32, 2));
            node[5] = B(hex_to_bin(arr, 34, 2));
        }
    
        public String toString() {
            return bin_to_hex(time_low, 8) + '-' +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbConstants.java

        static final int SYNCHRONIZE = 0x00100000; // 20
        static final int GENERIC_ALL = 0x10000000; // 28
        static final int GENERIC_EXECUTE = 0x20000000; // 29
        static final int GENERIC_WRITE = 0x40000000; // 30
        static final int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
        static final int FLAGS_TARGET_MUST_BE_FILE = 0x0001;
        static final int FLAGS_TARGET_MUST_BE_DIRECTORY = 0x0002;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

            (byte) 9, (byte) 1, (byte)58, (byte)50, (byte)42, (byte)34, (byte)26,
            (byte)18, (byte)10, (byte) 2, (byte)59, (byte)51, (byte)43, (byte)35,
            (byte)62, (byte)54, (byte)46, (byte)38, (byte)30, (byte)22, (byte)14,
            (byte) 6, (byte)61, (byte)53, (byte)45, (byte)37, (byte)29, (byte)21,
            (byte)13, (byte) 5, (byte)60, (byte)52, (byte)44, (byte)36, (byte)28,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int GENERIC_ALL           = 0x10000000; // 28
        public static final int GENERIC_EXECUTE       = 0x20000000; // 29
        public static final int GENERIC_WRITE         = 0x40000000; // 30
        public static final int GENERIC_READ          = 0x80000000; // 31
    
        public static final int FLAGS_OBJECT_INHERIT    = 0x01;
        public static final int FLAGS_CONTAINER_INHERIT = 0x02;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int GENERIC_ALL           = 0x10000000; // 28
        static final int GENERIC_EXECUTE       = 0x20000000; // 29
        static final int GENERIC_WRITE         = 0x40000000; // 30
        static final int GENERIC_READ          = 0x80000000; // 31
    
    
        // flags for move and copy
        static final int FLAGS_TARGET_MUST_BE_FILE         = 0x0001; 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/FileLocationTest.java

                    // this intentionally sticks to the old name
                    assertEquals("/share/foo/bar/", fl2.getURLPath());
                }
            }
        }
    
    
        // test case for #30
        @Test ( expected = MalformedURLException.class )
        public void testInvalid () throws MalformedURLException, CIFSException {
            try ( SmbResource p = new SmbFile("smb:a", getContext()) ) {
                p.getType();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 13:16:07 GMT 2020
    - 23K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

         * messages as well as socket IO in a synchronized fashon.
         */
    
        private static final NameServiceClient CLIENT = new NameServiceClient();
    
        private static final int DEFAULT_CACHE_POLICY = 30;
        private static final int CACHE_POLICY = Config.getInt( "jcifs.smb1.netbios.cachePolicy", DEFAULT_CACHE_POLICY );
        private static final int FOREVER = -1;
        private static int nbnsIndex = 0;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/UUID.java

            this.node[ 0 ] = B(hex_to_bin(arr, 24, 2));
            this.node[ 1 ] = B(hex_to_bin(arr, 26, 2));
            this.node[ 2 ] = B(hex_to_bin(arr, 28, 2));
            this.node[ 3 ] = B(hex_to_bin(arr, 30, 2));
            this.node[ 4 ] = B(hex_to_bin(arr, 32, 2));
            this.node[ 5 ] = B(hex_to_bin(arr, 34, 2));
        }
    
    
        @Override
        public String toString () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * 
         */
        public static final int GENERIC_WRITE = 0x40000000; // 30
        /**
         * 
         */
        public static final int GENERIC_READ = 0x80000000; // 31
    
        /**
         * 
         */
        public static final int FLAGS_OBJECT_INHERIT = 0x01;
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
Back to top