Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Meleti (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

        private int passwordLength;
        String path;
    
        /* batchLimits indecies
         *
         * 0 = SMB_COM_CHECK_DIRECTORY
         * 2 = SMB_COM_CREATE_DIRECTORY
         * 3 = SMB_COM_DELETE
         * 4 = SMB_COM_DELETE_DIRECTORY
         * 5 = SMB_COM_OPEN_ANDX
         * 6 = SMB_COM_RENAME
         * 7 = SMB_COM_TRANSACTION
         * 8 = SMB_COM_QUERY_INFORMATION
         */
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbConstants.java

         * other SMB clients will be permitted to delete the target file while
         * this file is open. This constant may be logically OR'd with other share
         * access flags.
         */
        static final int FILE_SHARE_DELETE = 0x04;
        /**
         * Default sharing mode for files
         */
        static final int DEFAULT_SHARING = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

    accessed by another process" error. The <code>FILE_SHARE_READ</code>,
    <code>FILE_SHARE_WRITE</code>, and <code>FILE_SHARE_DELETE</code> may be
    combined with the bitwise OR '|' to specify that other peocesses may read,
    write, and/or delete the file while the jCIFS user has the file open.
     * 
     * @param url An smb URL representing the file to write to
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 9.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComDeleteDirectory.java

        /**
         * 
         * @param config
         * @param path
         */
        public SmbComDeleteDirectory ( Configuration config, String path ) {
            super(config, SMB_COM_DELETE_DIRECTORY, path);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/NamingTest.java

                            assertEquals(name, tf.getName());
                        }
                    }
                }
                finally {
                    d.delete();
                }
            }
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 10:48:05 GMT 2020
    - 7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b;
        public static final int NT_STATUS_SHARING_VIOLATION = 0xC0000043;
        public static final int NT_STATUS_DELETE_PENDING = 0xC0000056;
        public static final int NT_STATUS_NO_LOGON_SERVERS = 0xC000005e;
        public static final int NT_STATUS_USER_EXISTS = 0xC0000063;
        public static final int NT_STATUS_NO_SUCH_USER = 0xC0000064;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

                setReadWrite();
            }
    
            /*
             * Delete or Delete Directory Request / Response
             */
    
            if( log.level >= 3 )
                log.println( "delete: " + fileName );
    
            if(( attributes & ATTR_DIRECTORY ) != 0 ) {
    
                /* Recursively delete directory contents
                 */
    
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  8. src/main/java/jcifs/smb1/smb1/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
        public static final int DELETE                = 0x00010000; // 16
        public static final int READ_CONTROL          = 0x00020000; // 17
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/RandomAccessFileTest.java

                    }
    
                    Assert.assertArrayEquals(new byte[] {
                        0x4, 0x5, 0x6, 0x7
                    }, buf);
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testReadOnlySeekOOB () throws IOException {
            try ( SmbFile f = createTestFile() ) {
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/ReadWriteTest.java

                    }
    
                    try ( InputStream is = f.getInputStream() ) {
                        verifyRandom(4096, 1024, true, is);
                    }
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testAppend () throws IOException {
            try ( SmbFile f = createTestFile() ) {
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13.2K bytes
    - Viewed (0)
Back to top