- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,611 for sizi (0.04 sec)
-
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
} /** * Get the maximum size for RDMA read/write operations * * @return maximum read/write size in bytes */ public int getMaxReadWriteSize() { return maxReadWriteSize; } /** * Set the maximum size for RDMA read/write operations * * @param maxReadWriteSize maximum read/write size in bytes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
} return deletedDocIdList.size(); } }; ComponentUtil.register(client, "searchEngineClient"); final DocList docList = new DocList(); assertEquals(0, indexingHelper.deleteOldDocuments(client, docList)); assertEquals(0, docList.size()); assertEquals(0, deletedDocIdList.size()); docList.clear(); deletedDocIdList.clear();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
return Stream.of(Arguments.of(null, 4), // size() returns 4 even with null Arguments.of(new int[0], 4), // size() returns 4 for empty array Arguments.of(new int[] { 1 }, 4 + 2), // size() returns 4 + 2*1 Arguments.of(new int[] { 1, 2 }, 4 + 4), // size() returns 4 + 2*2 Arguments.of(new int[] { 1, 2, 3, 4, 5 }, 4 + 10) // size() returns 4 + 2*5 ); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/ne.css
width: 100px; height: 18px; padding: 2px; font-family: Verdana, sans-serif; font-size: 10pt } body { font-family: Verdana, sans-serif; font-size: 10pt; background-color: #ffffff; margin-top: 0; margin-left: 5 } small { font-size: 8pt } big { font-size: 14pt
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
assertTrue(actual.size() == keys.size()); docMap.clear(); assertTrue(docMap.isEmpty()); } public void test_constructor() { Map<String, Object> parentMap = new HashMap<>(); DocMap docMap = new DocMap(parentMap); assertNotNull(docMap); assertTrue(docMap.isEmpty()); assertEquals(0, docMap.size()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EchoRequestTest.java
} @Test @DisplayName("Size should be consistent across multiple calls") void testSizeConsistency() { int size1 = echoRequest.size(); int size2 = echoRequest.size(); assertEquals(size1, size2); } @Test @DisplayName("Size should be 72 bytes (64 header + 4 body aligned to 8)")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
String pipeName = "TestPipe"; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName); // Verify size calculation int expectedSize = 14 + pipeName.getBytes(StandardCharsets.UTF_16LE).length; assertEquals(expectedSize, request.size()); } @Test @DisplayName("Test constructor with name and timeout sets correct fields") void testConstructorWithNameAndTimeout() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleInternalTest.java
void getSendBufferSize_returns() throws Exception { // Arrange when(handle.getSendBufferSize()).thenReturn(8192); // Act int size = handle.getSendBufferSize(); // Assert assertEquals(8192, size); verify(handle).getSendBufferSize(); } @Test @DisplayName("getSendBufferSize(): propagates CIFSException on failure")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java
assertEquals(size, multimap().size()); } else { assertEquals(newArrayList(v3()), new ArrayList<>(values)); assertEquals(size + 1, multimap().size()); } } @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES) public void testPutAllNullValueNullFirst_unsupported() { int size = getNumElements(); assertThrows(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
*/ @Size(max = 10) public String resetDictionaries; /** * The number of shards for doc. */ @Size(max = 10) public String numberOfShardsForDoc = ComponentUtil.getFessConfig().getIndexNumberOfShards(); /** * The auto expand replicas for doc. */ @Size(max = 10) public String autoExpandReplicasForDoc = ComponentUtil.getFessConfig().getIndexAutoExpandReplicas();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0)