- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for DISCONNECTED (0.52 sec)
-
src/main/java/jcifs/util/transport/Transport.java
* @throws IOException if an I/O error occurs */ protected abstract void doSkip(Long key) throws IOException; /** * Checks if the transport is disconnected. * * @return whether the transport is disconnected */ public boolean isDisconnected() { return this.state == 4 || this.state == 5 || this.state == 6 || this.state == 0; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
assertTrue( initialState == RdmaConnection.RdmaConnectionState.DISCONNECTED || initialState == RdmaConnection.RdmaConnectionState.CONNECTING, "Initial state should be DISCONNECTED or CONNECTING"); // Test connection properties // Note: Local address may be null for TCP fallback provider
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
if ((inUse ? l != 1 : l > 0)) { log.warn("Disconnected tree while still in use " + this); dumpResource(); wasInUse = true; if (sess.getConfig().isTraceResourceUsage()) { throw new RuntimeCIFSException("Disconnected tree while still in use"); } }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
*/ @Test public void testConnectedFlag() { assertFalse("Initially not connected", fesenClient.connected()); // After destroy, should be disconnected fesenClient.destroy(); assertFalse("Should be disconnected after destroy", fesenClient.connected()); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:44:44 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
import jcifs.util.transport.TransportException; /** * This class encapsulates the logic for switching tree connections * * Switching trees can occur either when the tree has been disconnected by failure or idle-timeout - as well as on * DFS referrals. * * @author mbechler * */ class SmbTreeConnection implements AutoCloseable {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
this.channelId = channelId; this.transport = transport; this.localInterface = localInterface; this.remoteInterface = remoteInterface; this.state = ChannelState.DISCONNECTED; this.establishedTime = System.currentTimeMillis(); this.lastActivityTime = establishedTime; this.bytesSent = new AtomicLong(); this.bytesReceived = new AtomicLong();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** The object was not found */ int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034; /** The object name already exists */ int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035; /** The port is disconnected */ int NT_STATUS_PORT_DISCONNECTED = 0xC0000037; /** The object path is invalid */ int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039; /** The object path was not found */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
protected volatile RdmaConnectionState state; protected RdmaCredits credits; protected int maxFragmentedSize; protected int maxReadWriteSize; public enum RdmaConnectionState { DISCONNECTED, CONNECTING, CONNECTED, ESTABLISHED, ERROR, CLOSING, CLOSED } public RdmaConnection(InetSocketAddress remote, InetSocketAddress local) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
- **MS-SMB2 Section 3.2.4.1.6**: Alternative Channel Creation - **MS-SMB2 Section 3.3.5.15.12**: Channel Binding ## 3. Multi-Channel Architecture ### 3.1 Channel States ```java public enum ChannelState { DISCONNECTED(0), // Not connected CONNECTING(1), // Connection in progress AUTHENTICATING(2), // Authentication in progress ESTABLISHED(3), // Ready for useRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
/** The object was not found */ int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034; /** The object name already exists */ int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035; /** The port is disconnected */ int NT_STATUS_PORT_DISCONNECTED = 0xC0000037; /** The object path is invalid */ int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039; /** The object path was not found */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0)