- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 472 for Limits (0.1 sec)
-
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test getBatchLimit method") void testGetBatchLimit() { // Test default batch limit assertEquals(0, config.getBatchLimit("TreeConnectAndX.QueryInformation")); // Test unspecified batch limit assertEquals(1, config.getBatchLimit("UnknownCommand")); // Test caching behavior
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
* @param expectedCount the expected number of roundtrippable permutations * @param start the starting bytes encoded as a long as big-endian * @param lim the limit of bytes to process encoded as a long as big-endian, or -1 to mean the max * limit for numBytes */ @GwtIncompatible // java.nio.charset.Charset private static void testBytes(int numBytes, long expectedCount, long start, long lim) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/resources/fess_message_nl.properties
constraints.AssertTrue.message = {item} moet waar zijn. constraints.DecimalMax.message = {item} moet kleiner zijn dan {value}. constraints.DecimalMin.message = {item} moet groter zijn dan {value}. constraints.Digits.message = {item} moet een getal zijn. (Verwacht: <getal>.<getal>) constraints.Future.message = {item} moet een toekomstige waarde zijn. constraints.Max.message = {item} moet kleiner of gelijk zijn aan {value}.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12K bytes - Viewed (0) -
src/main/resources/fess_message_ru.properties
constraints.AssertTrue.message = {item} должно быть истинным. constraints.DecimalMax.message = {item} должно быть меньше {value}. constraints.DecimalMin.message = {item} должно быть больше {value}. constraints.Digits.message = {item} должно быть числом. (ожидается: <число>.<число>) constraints.Future.message = {item} должно быть будущим значением. constraints.Max.message = {item} должно быть меньше или равно {value}.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/AndroidLog.kt
} private fun loggerTag(loggerName: String): String { // We need to handle long logger names before they hit Log. // java.lang.IllegalArgumentException: Log tag "okhttp3.mockwebserver.MockWebServer" exceeds limit of 23 characters return knownLoggers[loggerName] ?: loggerName.take(23) } fun enable() { try { for ((logger, tag) in knownLoggers) { enableLogging(logger, tag) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:03:31 UTC 2025 - 4K bytes - Viewed (0) -
src/main/resources/fess_message_pl.properties
constraints.AssertTrue.message = {item} musi być prawdziwe. constraints.DecimalMax.message = {item} musi być mniejsze niż {value}. constraints.DecimalMin.message = {item} musi być większe niż {value}. constraints.Digits.message = {item} musi być liczbą. (Oczekiwano: <liczba>.<liczba>) constraints.Future.message = {item} musi być wartością przyszłą. constraints.Max.message = {item} musi być mniejsze lub równe {value}.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.5K bytes - Viewed (0) -
cmd/object-lambda-handlers.go
host = globalMinioEndpointURL.Host secure = globalMinioEndpointURL.Scheme == "https" } duration := time.Until(cred.Expiration) if duration > time.Hour || duration < time.Hour { // Always limit to 1 hour. duration = time.Hour } clnt, err := miniogo.New(host, &miniogo.Options{ Creds: credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, cred.SessionToken), Secure: secure,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 18 21:56:31 UTC 2025 - 6.5K bytes - Viewed (0) -
cmd/untar.go
case formatGzip: gz, err := gzip.NewReader(bf) if err != nil { return err } defer gz.Close() r = gz case formatS2: r = s2.NewReader(bf) case formatZstd: // Limit to 16 MiB per stream. dec, err := zstd.NewReader(bf, zstd.WithDecoderMaxWindow(16<<20)) if err != nil { return err } defer dec.Close() r = dec case formatBZ2:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 6K bytes - Viewed (2) -
src/main/java/jcifs/config/BaseConfiguration.java
return true; } return !this.disallowCompound.contains(command); } /** * Gets the batch limit for a specific command * * @param cmd the command to get the batch limit for * @return the batch limit for the command, or null if not set */ protected Integer doGetBatchLimit(final String cmd) { return null; } /**
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/test/java/jcifs/internal/smb2/multichannel/ChannelFailoverTest.java
} @Test void testFailoverStateRetryLogic() { ChannelFailover.FailoverState state = new ChannelFailover.FailoverState("test-channel"); // Should allow retries up to limit assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 1 assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 2 assertTrue(state.shouldRetry());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.7K bytes - Viewed (0)