- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 39 for DISCONNECTED (0.12 sec)
-
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
rangeMap.put(Range.closedOpen(7, 10), 2); rangeMap.put(Range.closedOpen(12, 15), 2); rangeMap.put(Range.closedOpen(18, 19), 3); rangeMap.putCoalescing(Range.closedOpen(-5, -4), 0); // disconnected rangeMap.putCoalescing(Range.closedOpen(-6, -5), 0); // lower than minimum rangeMap.putCoalescing(Range.closedOpen(2, 4), 1); // between rangeMap.putCoalescing(Range.closedOpen(9, 14), 0); // different value
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 30K bytes - Viewed (0) -
cmd/storage-rest-client.go
return client.endpoint.PoolIdx, client.endpoint.SetIdx, client.endpoint.DiskIdx } // Wrapper to restClient.CallWithMethod to handle network errors, in case of network error the connection is disconnected // and a healthcheck routine gets invoked that would reconnect. func (client *storageRESTClient) callGet(ctx context.Context, rpcMethod string, values url.Values, body io.Reader, length int64) (io.ReadCloser, error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:38:41 UTC 2025 - 30.4K 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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
cmd/perf-tests.go
time.Sleep(time.Second) } rx := float64(globalSiteNetPerfRX.RXSample) delta := globalSiteNetPerfRX.firstToDisconnect.Sub(globalSiteNetPerfRX.lastToConnect) // If the first disconnected before the last connected, we likely had a network issue. if delta <= 0 { rx = 0 errStr = "detected network disconnections, possibly an unstable network" } globalSiteNetPerfRX.Reset()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileHandleImplTest.java
SmbFileHandleImpl h = new SmbFileHandleImpl(cfg, 1, tree, "//server/share", 0, 0, 0, 0, 0L); assertTrue(h.isValid()); } @Test @DisplayName("isValid() false when tree id changed or disconnected or closed") void isValid_false_inVariousCases() { when(cfg.isTraceResourceUsage()).thenReturn(false); stubValidTree(10L, true, true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K 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 use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
try { // Check if connection has been idle too long // Note: getLastUseTime() method would need to be added to SmbTransportImpl // For now, we'll use a simple disconnected check if (transport.isDisconnected()) { idle.add(transport); log.debug("Removing idle connection: {}", transport); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * If enabled, SmbFile instances starting with their first use will hold a reference to their tree. * This means that trees/sessions/connections won't be idle-disconnected even if there are no other active * references (currently executing code, file descriptors). * * Depending on the usage scenario, this may have some benefit as there won't be any delays for restablishing these
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
addEdge(N1, N2, E12); assertThat(network.edges()).containsExactly(E12); } @Test public void edges_noEdges() { assertThat(network.edges()).isEmpty(); // Network with no edges, given disconnected nodes addNode(N1); addNode(N2); assertThat(network.edges()).isEmpty(); } @Test public void incidentEdges_oneEdge() { addEdge(N1, N2, E12);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 32.7K bytes - Viewed (0)