Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for recovered (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        // Seed the pool with a bad connection.
        assertContent("a", getResponse(newRequest("/")))
    
        // Give the server time to disconnect.
        Thread.sleep(500)
    
        // This connection will need to be recovered. When it is, transparent gzip should still work!
        assertContent("b", getResponse(newRequest("/")))
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(0)
        // Connection is not pooled.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  10. 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)
Back to top