Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for err (0.19 sec)

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

                                disconnect( true );
                                throw new NbtException( NbtException.ERR_SSN_SRVC, errorCode );
                        }
                        break;
                    case -1:
                        disconnect( true );
                        throw new NbtException( NbtException.ERR_SSN_SRVC,
                                NbtException.CONNECTION_REFUSED );
                    default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/TestLocking.java

                            }
                            in.close();
                        }
                    } catch (IOException ioe) {
                        System.err.println(ioe.getMessage());
    //ioe.printStackTrace(System.err);
                    }
    
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                numComplete++;
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/ConcurrencyTest.java

                        finally {
                            try {
                                f.delete();
                            }
                            catch ( IOException e ) {
                                System.err.println(f.getLocator().getUNCPath());
                                throw e;
                            }
                        }
                    }
                    this.completed = true;
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtSocket.java

                    close();
                    throw new NbtException( NbtException.ERR_SSN_SRVC, errorCode );
                case -1:
                    throw new NbtException( NbtException.ERR_SSN_SRVC, NbtException.CONNECTION_REFUSED );
                default:
                    close();
                    throw new NbtException( NbtException.ERR_SSN_SRVC, 0 );
            }
        }
        public void close() throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                        throw new NbtException(NbtException.ERR_SSN_SRVC, errorCode);
                    }
                    break;
                case -1:
                    disconnect(true);
                    throw new NbtException(NbtException.ERR_SSN_SRVC, NbtException.CONNECTION_REFUSED);
                default:
                    disconnect(true);
                    throw new NbtException(NbtException.ERR_SSN_SRVC, 0);
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  6. src/test/resources/log4j.properties

    # Root logger option
    log4j.rootLogger=INFO, stderr
    
    # Direct log messages to stdout
    log4j.appender.stderr.ImmediateFlush=true
    log4j.appender.stderr=org.apache.log4j.ConsoleAppender
    log4j.appender.stderr.Target=System.err
    log4j.appender.stderr.layout=org.apache.log4j.PatternLayout
    log4j.appender.stderr.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
    
    
    log4j.logger.jcifs: INFO
    #log4j.logger.jcifs.internal.smb2.create: DEBUG
    Properties
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 806 bytes
    - Viewed (0)
Back to top