- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 84 for recovers (0.57 sec)
-
src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java
// Assert assertFalse(it.hasNext()); verify(tree, times(1)).release(); } @Test @DisplayName("doCloseInternal throwing still releases exactly once and next() recovers") void closeInternalThrowsButReleases() throws Exception { // Arrange stubAcquireReturnsSelf(); FileEntry initial = entry("first");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
// Check if recovery is viable by testing if createTransport works // If createTransport returns null (no mock setup), remove immediately try { SmbTransport testTransport = manager.createTransport(failedChannel.getLocalInterface(), failedChannel.getRemoteInterface()); if (testTransport == null) { // No recovery possible, remove synchronouslyRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} ``` ## 9. Error Handling and Fallback ### 9.1 RDMA Error Recovery ```java public class RdmaErrorHandler { public void handleRdmaError(RdmaConnection connection, Exception error) { log.warn("RDMA error occurred: {}", error.getMessage()); if (isRecoverableError(error)) { // Attempt to recover connection try { connection.reset();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
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: 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/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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K 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 @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
import org.codelibs.fess.util.ComponentUtil; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Job for purging expired documents from the search index. * This job removes documents that have passed their expiration time based on the expires field. * It helps maintain the search index by cleaning up outdated content automatically. */ public class PurgeDocJob {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
return URL_QUEUE_SERVICE_THREAD_LOCAL.get(); } /** * Sets the UrlQueueService instance to the thread-local variable. * If the provided UrlQueueService is null, it removes the current instance from the thread-local variable. * * @param urlQueueService the UrlQueueService instance to be set, or null to remove the current instance */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashSet.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.7K bytes - Viewed (0)