Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ignore (0.21 sec)

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

                    throw e;
                }
                try {
                    mkdir();
                }
                catch ( SmbException e ) {
                    log.debug("mkdirs", e);
                    // Ignore "Cannot create a file when that file already exists." errors for now as
                    // they seem to be show up under some conditions most likely due to timing issues.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                        log.debug("Session setup failed", se);
                        if ( this.connectionState.compareAndSet(1, 0) ) {
                            // only try to logoff if we have not completed the session setup, ignore errors from chained
                            // responses
                            logoff(true, true);
                        }
                        throw se;
                    }
                    finally {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top