- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 546 for multiples (0.07 sec)
-
docs/SMB3_IMPLEMENTATION_PLAN.md
### Phase 3: Multi-Channel Support **Priority: MEDIUM** | **Estimated Effort: 5-6 weeks** Multi-channel enables using multiple network connections for improved performance and reliability. #### 3.1 Core Multi-Channel Infrastructure ``` Package: jcifs.internal.smb2.multichannel ├── ChannelManager.java - Manage multiple channels per session ├── ChannelBinding.java - Channel binding and security
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
} /** * Test consistency across multiple calls */ @Test @DisplayName("Test consistency across multiple calls") public void testConsistencyAcrossMultipleCalls() { // Given smbComTreeDisconnect = new SmbComTreeDisconnect(config); byte[] buffer = new byte[100]; // When & Then - multiple calls should return the same resultRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
// Test multiple flags int combinedFlags = Smb2TreeConnectResponse.SMB2_SHAREFLAG_DFS | Smb2TreeConnectResponse.SMB2_SHAREFLAG_ENCRYPT_DATA; setPrivateField(response, "shareFlags", combinedFlags); assertEquals(combinedFlags, response.getShareFlags(), "Should handle multiple flags"); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java
assertNull(responseData.getUrl()); assertEquals(0, responseData.getHttpStatusCode()); } public void test_processMultipleTimes() { // Test calling process multiple times NullResponseProcessor processor = new NullResponseProcessor(); ResponseData responseData1 = new ResponseData(); responseData1.setUrl("https://example.com/page1");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
*/ public void decrypt(final byte[] cipherText, final byte[] clearText) { decrypt(cipherText, 0, clearText, 0); } /** * encrypts an array where the length must be a multiple of 8 */ /** * Encrypts an 8-byte block using DES * @param clearText the 8-byte plaintext block * @return the 8-byte ciphertext block */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
* the factory that created it. * * <p>Note, however, that although multiple locks can be created for a given Enum value, whether * it be through separate factory instances or through multiple calls to the same factory, * attempting to acquire multiple locks with the same Enum value (within the same thread) will
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Sep 11 17:06:34 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
Smb2Lock[] emptyLocks = new Smb2Lock[0]; assertDoesNotThrow(() -> new Smb2LockRequest(mockConfig, testFileId, emptyLocks)); } @Test @DisplayName("Should accept multiple locks") void testConstructorWithMultipleLocks() { Smb2Lock[] multipleLocks = new Smb2Lock[] { new Smb2Lock(0L, 100L, Smb2Lock.SMB2_LOCKFLAG_EXCLUSIVE_LOCK),
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java
assertNull(response.getExpiration()); } @Test @DisplayName("Should handle multiple configurations") void testMultipleConfigurations() throws SMBProtocolDecodingException { // Given - create multiple configurations Configuration config1 = mock(Configuration.class); Configuration config2 = mock(Configuration.class);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
assertFalse(Arrays.equals(retrieved1, retrieved2), "Keys should be different"); } @Test public void testClearAllKeys() { // Store multiple keys for (int i = 0; i < 5; i++) { byte[] key = new byte[16]; new SecureRandom().nextBytes(key); keyManager.storeSessionKey("session-" + i, key, "AES"); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0)