Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Pairing (0.19 sec)

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

                                throw new TransportException(
                                    String.format(
                                        "Transport was disconnected while waiting for a response (transport: %s state: %d),",
                                        this.name,
                                        this.state));
                            }
    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)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                            // finished connecting
                            return null;
                        }
                        // failure to connect
                        throw new SmbException("Tree disconnected while waiting for connection");
                    }
                    else if ( before == 2 ) {
                        // concurrently connected
                        return null;
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                                    if (timeout <= 0) {
                                        throw new TransportException( this +
                                                " timedout waiting for response to " +
                                                req );
                                    }
                                }
                                if (response.errorCode != 0) {
    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)
  4. src/main/java/jcifs/smb/NtStatus.java

            "The pipe state is invalid.", "All pipe instances are busy.", "No process is on the other end of the pipe.", "The pipe is being closed.",
            "Waiting for a process to open the other end of the pipe.", "File is a directory.", "A duplicate name exists on the network.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "All pipe instances are busy.",
            "The pipe state is invalid.",
            "All pipe instances are busy.",
            "No process is on the other end of the pipe.",
            "The pipe is being closed.",
            "Waiting for a process to open the other end of the pipe.",
            "Access is denied.",
            "A duplicate name exists on the network.",
            "The specified network name is no longer available.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    }
                    catch ( InterruptedIOException ioe ) {
                        if ( log.isTraceEnabled() ) {
                            log.trace("Timeout waiting for response " + name.name, ioe);
                        }
                        throw new UnknownHostException(name.name);
                    }
                    catch ( IOException ioe ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top