Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for locked (0.03 sec)

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

                "The user must change his password before he logs on the first time.", "The object was not found.",
                "The referenced account is currently locked out and may not be logged on to.", "Connection refused",
                "The remote system is not reachable by the transport.",
                "The layered file system driver for this I/O tag did not handle it when needed.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtStatus.java

                "The user must change his password before he logs on the first time.", "NT_STATUS_NOT_FOUND",
                "The referenced account is currently locked out and may not be logged on to.",
                "The remote system is not reachable by the transport.", "NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED", };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                 * thread.wait( timeout ) cannot reaquire the lock and
                 * return which would render the timeout effectively useless.
                 */
                if (this.state != 5 && this.state != 6) {
                    doConnect();
                }
            } catch (final Exception ex) {
                ex0 = ex; // Defer to below where we're locked
                return;
            } finally {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            // When: Request another connection
            // Note: Real SmbTransportImpl will report as disconnected without actual socket
            SmbTransportImpl second = testPool.getSmbTransport(ctx, address, 445, false);
    
            // Then: Will create new connection since real transport has no socket
            assertNotSame(first, second, "Should create new connection when first is disconnected");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
Back to top