- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 656 for minimum (0.04 sec)
-
src/test/java/jcifs/dcerpc/UnicodeStringTest.java
assertTrue(unicodeStringTrue.zterm, "zterm should be true"); assertEquals(0, unicodeStringTrue.length, "Length should be 0 for empty string"); assertEquals(0, unicodeStringTrue.maximum_length, "Maximum length should be 0 for empty string"); assertNull(unicodeStringTrue.buffer, "Buffer should be null for empty string"); // Test with zterm = false
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
@ValidateTypeFailure public Integer crudMode; /** The name of the file configuration (required, maximum 200 characters). */ @Required @Size(max = 200) public String name; /** The description of the file configuration (maximum 1000 characters). */ @Size(max = 1000) public String description; /** The file paths to crawl (required, must be valid file URIs). */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
docs/es/docs/features.md
* Objetos JSON (`dict`). * Array JSON (`list`) definiendo tipos de elementos. * Campos de cadena de caracteres (`str`), definiendo longitudes mínimas y máximas. * Números (`int`, `float`) con valores mínimos y máximos, etc. * Validación para tipos más exóticos, como: * URL. * Email. * UUID. * ...y otros.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacUnicodeString.java
* * @return the string length */ public short getLength() { return this.length; } /** * Gets the maximum allocated length for the string in bytes. * * @return the maximum string length */ public short getMaxLength() { return this.maxLength; } /** * Gets the pointer/offset to the string data. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
assertEquals(0L, fileFsSizeInfo.getCapacity()); assertEquals(0L, fileFsSizeInfo.getFree()); } @Test @DisplayName("Should decode buffer with maximum values") void shouldDecodeBufferWithMaximumValues() throws SMBProtocolDecodingException { // Given ByteBuffer buffer = ByteBuffer.allocate(24);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
this.client = client; } /** * Returns the maximum retry count. * @return The maximum retry count. */ public int getMaxRetryCount() { return maxRetryCount; } /** * Sets the maximum retry count. * @param maxRetryCount The maximum retry count. */ public void setMaxRetryCount(final int maxRetryCount) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/ServerData.java
*/ public byte sflags; /** * Server flags2 field from the SMB header. */ public int sflags2; /** * Maximum number of outstanding multiplex requests. */ public int smaxMpxCount; /** * Maximum buffer size the server can handle. */ public int maxBufferSize; /** * Session key for this connection. */ public int sessKey;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.26.md
- Clarified the CFS quota as 100ms in the code comments and set the minimum `cpuCFSQuotaPeriod` to 1ms to match Linux kernel expectations. ([#112123](https://github.com/kubernetes/kubernetes/pull/112123), [@paskal](https://github.com/paskal))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Mar 14 16:24:51 UTC 2024 - 425.7K 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)