- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for recovered (0.09 sec)
-
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
// Clear failover state on success failoverStates.remove(channel.getChannelId()); log.info("Successfully recovered channel {}", channel.getChannelId()); } catch (Exception e) { log.warn("Failed to recover channel {}: {}", channel.getChannelId(), e.getMessage()); // Schedule next retry or remove handleFailure(channel, e); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
PersistentHandleManager manager2 = new PersistentHandleManager(context); HandleInfo recovered = manager2.getHandleForReconnect("/test/file.txt"); assertNotNull(recovered); assertEquals(HandleType.PERSISTENT, recovered.type); assertArrayEquals(fileId, recovered.fileId); } } ``` ### 8.2 Integration Tests ```java @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
log.warn("RDMA recovery attempt {} failed: {}", retryCount, recoveryError.getMessage()); // If this was the last attempt, log the full error if (retryCount >= maxRetries) { log.error("All RDMA recovery attempts failed", recoveryError); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/debugging/README.md
mc: Encrypted file data successfully downloaded as inspect.ad2b43d8.enc mc: Decryption key: ad2b43d847fdb14e54c5836200177f7158b3f745433525f5d23c0e0208e50c9948540b54 mc: The decryption key will ONLY be shown here. It cannot be recovered. mc: The encrypted file can safely be shared without the decryption key. mc: Even with the decryption key, data stored with encryption cannot be accessed. ``` This file can be decrypted using the decryption tool below:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
* * The circuit breaker has three states: * - CLOSED: Normal operation, requests pass through * - OPEN: Service is failing, requests are blocked * - HALF_OPEN: Testing if service has recovered */ public class SmbCircuitBreaker { private static final Logger log = LoggerFactory.getLogger(SmbCircuitBreaker.class); /** * Circuit breaker states */ public enum State {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} catch (Exception e) { log.error("Failed to recover RDMA connection", e); fallbackToTcp(connection); } } else { // Non-recoverable error, fall back to TCP fallbackToTcp(connection); } } private boolean isRecoverableError(Exception error) {
Registered: Sun Sep 07 00:10:21 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
failoverStates.remove(channel.getChannelId()); log.info("Successfully recovered channel {}", channel.getChannelId()); } catch (Exception e) { log.warn("Failed to recover channel {}: {}", channel.getChannelId(), e.getMessage()); // Schedule next retry or remove
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
// Increase heartbeat frequency // Consider fallback mechanisms } public void handlePartitionRecovery() { log.info("Network partition recovered - resuming normal witness operations"); // Restore normal operation parameters // Verify all registrations are still valid } } ``` ## 9. Performance and Optimization
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/SmbException.java
*/ public SmbException withContext(String key, Object value) { this.context.put(key, value); return this; } /** * Sets a recovery hint for the error * * @param hint the recovery hint * @return this exception for chaining */ public SmbException withRecoveryHint(String hint) { this.recoveryHint = hint; return this; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K bytes - Viewed (0) -
docs/en/docs/project-generation.md
- 🦇 Dark mode support. - 🐋 [Docker Compose](https://www.docker.com) for development and production. - 🔒 Secure password hashing by default. - 🔑 JWT token authentication. - 📫 Email based password recovery. - ✅ Tests with [Pytest](https://pytest.org). - 📞 [Traefik](https://traefik.io) as a reverse proxy / load balancer.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2K bytes - Viewed (0)