- Sort Score
- Result 10 results
- Languages All
Results 1501 - 1510 of 2,274 for all (0.01 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
smbComTreeDisconnect.readParameterWordsWireFormat(originalBuffer, 50); smbComTreeDisconnect.readBytesWireFormat(originalBuffer, 50); // Then - buffer should remain unchanged since all methods return 0 assertArrayEquals(bufferCopy, originalBuffer); } } /** * Test inheritance from ServerMessageBlock */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
@DisplayName("Should read file ID correctly with various patterns") void testReadFileIdPatterns() throws Exception { // Test with all zeros byte[] zeroFileId = new byte[16]; testFileIdReading(zeroFileId); // Test with all ones byte[] onesFileId = new byte[16]; Arrays.fill(onesFileId, (byte) 0xFF); testFileIdReading(onesFileId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
buffer[bufferIndex + 36] = 0x00; int bytesRead = response.readParameterWordsWireFormat(buffer, bufferIndex); assertEquals(37, bytesRead); // Verify all fields through reflection Field field = response.getClass().getSuperclass().getSuperclass().getDeclaredField("totalParameterCount"); field.setAccessible(true); assertEquals(totalParams, field.get(response));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
for (int i = 1; i <= 3; i++) { assertTrue(rateLimiter.checkAttempt("user1", "192.168.1." + i)); rateLimiter.recordFailure("user1", "192.168.1." + i); } // All different IPs should still be allowed for (int i = 1; i <= 3; i++) { assertTrue(rateLimiter.checkAttempt("user2", "192.168.1." + i)); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
} })); } /** * Clears the cache. */ public void clearCache() { sessionCache.clear(); } /** * Updates the session ID for all URL queue entries. * * @param oldSessionId The old session ID. * @param newSessionId The new session ID. */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
} // Should have 'others' at the end assertEquals("filetype:others", queryMap.get("labels.facet_filetype_others")); // Check all unique queries were added to FacetInfo assertTrue(testFacetInfo.getAddedQueries().contains("filetype:html")); assertTrue(testFacetInfo.getAddedQueries().contains("field2:value2"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java
/* * TODO: When given an ImmutableList that's a sublist, copy the referenced * portion of the array into a new array to save space? */ @SuppressWarnings("unchecked") // all supported methods are covariant ImmutableCollection<E> list = (ImmutableCollection<E>) elements; return list.asList(); } return copyFromCollection(elements); } @JsMethod
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java
// Prepare test data with zeros byte[] buffer = new byte[22]; // All zeros for (int i = 0; i < buffer.length; i++) { buffer[i] = 0; } // Decode smbInfoAllocation.decode(buffer, 0, buffer.length); // Verify - all zeros should result in 0 capacity and free assertEquals(0L, smbInfoAllocation.getCapacity());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
* Fix: Change HTTP/2 to use a daemon thread for its socket reader. If you've ever seen a command line application hang after all of the work is done, it may be due to a non-daemon thread like this one. * New: Include suppressed exceptions when all routes to a target service fail. ## Version 4.4.1 _2020-03-08_
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMultiset.java
E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { int size = remaining.length + 6; List<E> all = Lists.newArrayListWithCapacity(size); Collections.addAll(all, e1, e2, e3, e4, e5, e6); Collections.addAll(all, remaining); return copyOf(Ordering.natural(), all); } /** * Returns an immutable sorted multiset containing the given elements sorted by their natural * ordering.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 29.5K bytes - Viewed (0)