- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 68 for scenarios (2.33 sec)
-
docs/smb3-features/02-persistent-handles-design.md
## 1. Overview Persistent handles (also known as durable handles) allow SMB3 connections to survive network disconnections, server reboots, and client reconnections. This feature is critical for enterprise reliability and seamless failover scenarios. ## 2. Protocol Specification Reference - **MS-SMB2 Section 2.2.13.2.3**: SMB2_CREATE_DURABLE_HANDLE_REQUEST - **MS-SMB2 Section 2.2.13.2.4**: SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/test/java/jcifs/SmbSessionTest.java
verify(mockSession, times(1)).unwrap(SmbSession.class); verify(mockSession, times(1)).close(); } @Test @DisplayName("Should support partial mocking scenarios") void shouldSupportPartialMockingScenarios() { SmbSession mockSession = mock(SmbSession.class); Configuration mockConfig = mock(Configuration.class);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
assertEquals(concreteImplementation, cacheMap.get(key)); assertNotEquals(oldEntry, cacheMap.get(key)); } } @Nested @DisplayName("Complex Scenarios Tests") class ComplexScenariosTests { @Test @DisplayName("Should handle multiple fixup operations") void testMultipleFixupOperations() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
urlFilter.addExclude("https://example.com/.*"); // Exclude should take precedence assertFalse(urlFilter.match("https://example.com/page")); } /** * Test URL normalization scenarios */ public void test_urlNormalization() { String sessionId = "test-session-026"; urlFilter.init(sessionId); urlFilter.addInclude("https://example.com/path/.*");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryResponseTest.java
assertTrue(actual.contains("10.0.0.5"), "toString should contain the second NbtAddress string representation"); } /** * Helper method to set common superclass fields for successful parsing scenarios. */ private void setSuperclassFieldsForSuccessfulParsing() throws NoSuchFieldException, IllegalAccessException { Field resultCodeField = NameServicePacket.class.getDeclaredField("resultCode");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
assertEquals(FileSystemInformation.FS_SIZE_INFO, freshInfo.getFileSystemInformationClass()); } } @Nested @DisplayName("Edge Cases and Real-World Scenarios") class EdgeCasesAndRealWorldTests { @Test @DisplayName("Should handle typical Windows NTFS configuration") void shouldHandleTypicalNTFSConfiguration() throws SMBProtocolDecodingException {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
// When & Then assertEquals(free, allocInfo.getFree()); } @Test @DisplayName("Should handle overflow scenarios") void shouldHandleOverflowScenarios() { // Given - capacity at max, free space at max TestAllocInfo allocInfo = new TestAllocInfo(Long.MAX_VALUE, Long.MAX_VALUE); // WhenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
} public void resetCounters() { matchCallCount = 0; lastResponseData = null; } } /** * Another concrete implementation for testing different scenarios */ public static class ConditionalAbstractRule extends AbstractRule { private static final long serialVersionUID = 1L; private String urlPattern; private String mimeTypePattern;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/jcifs/SmbTransportPoolTest.java
// Then verify(transportPool).removeTransport(transport); verify(transportPool).removeTransport(transport2); } } @Nested @DisplayName("Integration Scenarios") class IntegrationTests { @Test @DisplayName("Should complete full connection lifecycle") void testFullConnectionLifecycle() throws Exception { // GivenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0)