Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nulla (0.19 sec)

  1. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            try {
                if ( this.handle != null ) {
                    try {
                        this.handle.close();
                    }
                    catch ( CIFSException e ) {
                        throw SmbException.wrap(e);
                    }
                    this.handle = null;
                }
            }
            finally {
                this.file.clearAttributeCache();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

        private byte[] tmp = new byte[8];
        private SmbComWriteAndXResponse write_andx_resp = null;
    
        public SmbRandomAccessFile( String url, String mode, int shareAccess )
                throws SmbException, MalformedURLException, UnknownHostException {
            this( new SmbFile( url, "", null, shareAccess ), mode );
        }
        public SmbRandomAccessFile( SmbFile file, String mode )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
Back to top