Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 256 for transpose (0.15 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

                // Check if transport creation failed
                if (newTransport == null) {
                    throw new IOException("Failed to create new transport");
                }
    
                // Reconnect
                channel.setState(ChannelState.CONNECTING);
                // Connection would be ensured through proper transport interface
    
                // Re-establish channel binding
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#error()
         */
        @Override
        public final void error() {
            this.error = true;
            synchronized (this) {
                notifyAll();
            }
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#clearReceived()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbTreeImplTest.java

        void testTreeConnectSmb2() throws CIFSException, IOException {
            when(transport.isSMB2()).thenReturn(true);
            when(transport.getContext()).thenReturn(context);
            when(session.getTargetHost()).thenReturn("localhost");
    
            // Mock negotiate response for SMB2
            Smb2NegotiateResponse nego = mock(Smb2NegotiateResponse.class);
            when(transport.getNegotiateResponse()).thenReturn(nego);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/transport/Request.java

    package jcifs.smb1.util.transport;
    
    /**
     * Marker interface for transport layer request objects.
     * Represents a request that can be sent through the SMB1 transport layer.
     */
    public interface Request {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 205 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

        SmbSessionImpl(CIFSContext tf, String targetHost, String targetDomain, SmbTransportImpl transport) {
            this.transportContext = tf;
            this.targetDomain = targetDomain;
            this.targetHost = targetHost;
            this.transport = transport.acquire();
            this.trees = new CopyOnWriteArrayList<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SigningDigest.java

        }
    
        /**
         * Constructs a new signing digest using transport and authentication credentials.
         *
         * @param transport the SMB transport for this signing context
         * @param auth the NTLM password authentication credentials
         * @throws SmbException if MD5 algorithm is not available or key generation fails
         */
        public SigningDigest(final SmbTransport transport, final NtlmPasswordAuthentication auth) throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/TransportException.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.util.transport;
    
    import jcifs.CIFSException;
    
    /**
     * Exception class for transport layer errors.
     * This exception is thrown when transport-related communication errors occur.
     */
    public class TransportException extends CIFSException {
    
        /**
         *
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

            this.macSigningKey = macSigningKey;
            this.signSequence = initialSequence;
        }
    
        /**
         * Constructs a signing digest from transport and authentication information
         *
         * @param transport
         *            The SMB transport containing server encryption key
         * @param auth
         *            The NTLM password authenticator containing user credentials
         * @throws SmbException
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTree.java

            synchronized (session.transport()) {
                String unc;
    
                while (connectionState != 0) {
                    if (connectionState == 2 || connectionState == 3) { // connected or disconnecting
                        return;
                    }
                    try {
                        session.transport.wait();
                    } catch (final InterruptedException ie) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbTreeConnectionTest.java

            SmbTransportImpl transport = mock(SmbTransportImpl.class);
    
            when(tree.isConnected()).thenReturn(true);
            when(tree.getSession()).thenReturn(session);
            when(tree.acquire(false)).thenReturn(tree);
            when(session.getTransport()).thenReturn(transport);
            when(transport.isDisconnected()).thenReturn(false);
            when(transport.getRemoteHostName()).thenReturn("host");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top