- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,840 for sizi (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
*/ public BaseSearchBody() { // Default constructor } /** * Gets the page size for search results. * @return The page size. */ public int getPageSize() { if (size != null) { return size; } return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
} @Test @DisplayName("Should align size to 8-byte boundary") void testSizeAlignment() { // Test various data lengths to ensure 8-byte alignment for (int i = 0; i < 16; i++) { request.setData(new byte[i], 0, i); int size = request.size(); assertEquals(0, size % 8, "Size should be aligned to 8-byte boundary");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
testBuffer = new byte[100]; testBuffer[0] = 0x00; // Allow ACE testBuffer[1] = 0x03; // FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT testBuffer[2] = 0x20; // Size low byte (32) testBuffer[3] = 0x00; // Size high byte testBuffer[4] = (byte) 0xA9; // Access mask byte 0 testBuffer[5] = 0x00; // Access mask byte 1 testBuffer[6] = 0x12; // Access mask byte 2
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertEquals(expectedSize, req.size()); } @Test @DisplayName("Should align size to 8-byte boundary") void testSizeAlignment() { int size = request.size(); assertEquals(0, size % 8, "Size should be aligned to 8-byte boundary"); } @ParameterizedTest @DisplayName("Should calculate size for various lock counts")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
hpackWriter!!.resizeHeaderTable(4096) hpackWriter!!.resizeHeaderTable(2048) hpackWriter!!.writeHeaders(listOf(Header("foo", "bar"))) assertBytes( // Dynamic size update (size = 0). 0x20, // Dynamic size update (size = 2048). 0x3F, 0xE1, 0xF, 0x40, 3, 'f'.code, 'o'.code, 'o'.code, 3, 'b'.code, 'a'.code,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/Smb2RdmaTransform.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
throw new RuntimeException(e); } int size = request.size(); // Expected size calculation: size8(SMB2_HEADER_LENGTH + 40 + inputBuffer.size()) int expectedRawSize = Smb2Constants.SMB2_HEADER_LENGTH + 40 + 100; int expectedSize = (expectedRawSize + 7) & ~7; assertEquals(expectedSize, size); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
@CustomSize(maxKey = "form.admin.max.input.size") public String includedPaths; /** * The paths to exclude for this label type. */ @CustomSize(maxKey = "form.admin.max.input.size") public String excludedPaths; /** * The permissions required to view this label type. */ @CustomSize(maxKey = "form.admin.max.input.size") public String permissions; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/LinkedListMultimap.java
@Nullable Node<K, V> previous; int expectedModCount = modCount; NodeIterator(int index) { int size = size(); checkPositionIndex(index, size); if (index >= (size / 2)) { previous = tail; nextIndex = size; while (index++ < size) { previous(); } } else { next = head; while (index-- > 0) { next();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
parent = list; this.allRecordCount = allRecordCount; pageSize = size; currentPageNumber = offset / size + 1; allPageCount = allRecordCount == 0 ? 0 : (allRecordCount - 1) / size + 1; } @Override public int size() { return parent.size(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0)