- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for 1048577 (0.05 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
fessConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getIndexerDataMaxDocumentRequestSize() { return "1048576"; // 1MB } @Override public Integer getIndexerDataMaxDocumentCacheSizeAsInteger() { return 10000; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
public static final int DEFAULT_RDMA_READ_WRITE_SIZE = 1048576; // 1MB public static final int DEFAULT_RECEIVE_CREDIT_MAX = 255; public static final int DEFAULT_SEND_CREDIT_TARGET = 32; public static final int DEFAULT_MAX_RECEIVE_SIZE = 8192; public static final int DEFAULT_MAX_FRAGMENTED_SIZE = 131072; // 128KB public static final int DEFAULT_MAX_READ_WRITE_SIZE = 1048576; // 1MB } ``` ### 3.2 RDMA Provider Interface
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
1048576, // 1MB per chunk 16777216 // 16MB total ); int bytesDecoded = response.decode(buffer, 0, buffer.length); assertEquals(12, bytesDecoded); assertEquals(16, response.getChunksWritten()); assertEquals(1048576, response.getChunkBytesWritten());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
setResponseAsReceived(response); setPrivateField(response, "dialectRevision", 0x0300); setPrivateField(response, "maxReadSize", 1048576); setPrivateField(response, "maxWriteSize", 1048576); setPrivateField(response, "maxTransactSize", 1048576); when(mockConfig.getTransactionBufferSize()).thenReturn(65536); when(mockConfig.getReceiveBufferSize()).thenReturn(32768);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java
*/ public static final int SMB_DIRECT_RESPONSE_REQUESTED = 0x00000001; /** * Default maximum size for RDMA read/write operations (1MB) */ public static final int DEFAULT_RDMA_READ_WRITE_SIZE = 1048576; // 1MB /** * Default maximum number of receive credits */ public static final int DEFAULT_RECEIVE_CREDIT_MAX = 255; /** * Default target number of send credits */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- Fix detach disk issue on deleting vmss node. ([#104572](https://github.com/kubernetes/kubernetes/pull/104572), [@andyzhangx](https://github.com/andyzhangx))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
src/main/resources/crawler/contentlength.xml
<components namespace="fessCrawler"> <include path="crawler/container.xml" /> <component name="contentLengthHelper" class="org.codelibs.fess.crawler.helper.ContentLengthHelper" instance="singleton"> <property name="defaultMaxLength">10485760</property><!-- 10M --> <postConstruct name="addMaxLength"> <arg>"text/html"</arg> <arg>2621440</arg><!-- 2.5M --> </postConstruct> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Oct 11 06:51:14 UTC 2015 - 561 bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
class EdgeCasesTests { @ParameterizedTest @DisplayName("Should handle boundary values for capacity") @ValueSource(longs = { 0L, 1L, -1L, 1024L, 1048576L, 1073741824L, Long.MAX_VALUE, Long.MIN_VALUE, Long.MAX_VALUE - 1, Long.MIN_VALUE + 1 }) void shouldHandleBoundaryValuesForCapacity(long capacity) { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
expected[i] = 5300224; } // 97-111 are all 2342912 for (int i = 97; i <= 111; i++) { expected[i] = 2342912; } // 113-117 are all 1048576 for (int i = 113; i <= 117; i++) { expected[i] = 1048576; } // One offs expected[112] = 786432; expected[118] = 786432; expected[119] = 1048576; expected[120] = 458752; expected[121] = 524288;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0)