Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Valid (6.33 sec)

  1. src/main/java/jcifs/smb1/util/transport/Transport.java

            } catch( InterruptedException ie ) {
                state = 0;
                thread = null;
                throw new TransportException( ie );
            } finally {
                /* This guarantees that we leave in a valid state
                 */
                if (state != 0 && state != 3 && state != 4) {
                    if (log.level >= 1)
                        log.println("Invalid state: " + state);
                    state = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

            }
            catch ( TransportException e ) {
                cleanupThread(timeout);
                throw e;
            }
            finally {
                /*
                 * This guarantees that we leave in a valid state
                 */
                st = this.state;
                if ( st != 0 && st != 3 && st != 4 && st != 5 && st != 6 ) {
                    log.error("Invalid state: " + st);
                    this.state = 6;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
Back to top