- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 313 for maximum (0.04 sec)
-
src/main/java/jcifs/Configuration.java
int getNetbiosCachePolicy(); /** * Gets the maximum buffer size for IO operations * * @return the maximum size of IO buffers, limits the maximum message size */ int getMaximumBufferSize(); /** * * Property {@code jcifs.smb.client.transaction_buf_size} (int, default 65535) * * @return maximum data size for SMB transactions */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
log.warn("Message size exceeds maximum: {} > {}", size, maxSize); throw new SmbException("Message size exceeds maximum: " + size + " > " + maxSize); } } /** * Validate string from server response * * @param str string to validate * @param maxLength maximum allowed length * @param fieldName field name for error messages
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
initProtocolVersions(min, max); } /** * Initializes the minimum and maximum protocol versions. * * @param min minimum protocol version * @param max maximum protocol version */ protected void initProtocolVersions(final DialectVersion min, final DialectVersion max) { // Default to SMB2 minimum for security - SMB1 is deprecated and insecure
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
} return sanitized; } /** * Validates that a value is within the specified range * * @param value the value to check * @param min minimum value (inclusive) * @param max maximum value (inclusive) * @param fieldName field name for error reporting * @throws IllegalArgumentException if value is out of range */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
assertEquals(maxMid, request.getMid(), "Should handle maximum MID"); assertEquals(maxAsyncId, request.getAsyncId(), "Should handle maximum AsyncId"); assertEquals(maxCredits, request.getCredit(), "Should handle maximum credits"); assertEquals(maxTreeId, request.getTreeId(), "Should handle maximum tree ID"); } @Test @DisplayName("Test edge case with minimum/negative values") void testMinimumValues() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* <li>Optionally removing duplicate terms based on a flag.</li> * <li>Limiting the maximum size of alphanumeric and symbol terms.</li> * </ul> * * <p>The {@link TextNormalizeContext} class provides a fluent API to configure the text * normalization process, including setting initial buffer capacity, maximum term sizes, * duplicate term removal, and custom space characters. * * <p>Example usage: * <pre>{@code
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
} /** * Sets the maximum thread check count. * @param maxThreadCheckCount The maximum thread check count. */ public void setMaxThreadCheckCount(final int maxThreadCheckCount) { crawlerContext.maxThreadCheckCount = maxThreadCheckCount; } /** * Sets the maximum depth. * @param maxDepth The maximum depth. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
this.extractorName = extractorName; return this; } /** * Sets the maximum content length allowed for extraction. * * @param maxContentLength the maximum content length to set * @return this builder instance for method chaining */ public ExtractorBuilder maxContentLength(final long maxContentLength) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
} /** * Sets the maximum size of the delete document cache. * * @param maxDeleteDocumentCacheSize the maximum cache size before batch deletion is triggered */ public void setMaxDeleteDocumentCacheSize(final int maxDeleteDocumentCacheSize) { this.maxDeleteDocumentCacheSize = maxDeleteDocumentCacheSize; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
docs/config/README.md
replication_priority (string) set replication priority (default: 'auto') replication_max_workers (number) set the maximum number of replication workers (default: '500') replication_max_lrg_workers (number) set the maximum number of replication workers MinIO uses to replicate large objects between sites. (default: '10')
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1)