- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 571 for _max (0.02 sec)
-
guava/src/com/google/common/math/DoubleUtils.java
import static java.lang.Double.doubleToRawLongBits; import static java.lang.Double.isNaN; import static java.lang.Double.longBitsToDouble; import static java.lang.Math.getExponent; import static java.lang.Math.max; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.VisibleForTesting; import java.math.BigInteger; /** * Utilities for {@code double} primitives. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
set FESS_MIN_MEM=256m ) if "%FESS_MAX_MEM%" == "" ( set FESS_MAX_MEM=1g ) if NOT "%FESS_HEAP_SIZE%" == "" ( set FESS_MIN_MEM=%FESS_HEAP_SIZE% set FESS_MAX_MEM=%FESS_HEAP_SIZE% ) REM min and max heap sizes should be set to the same value to avoid REM stop-the-world GC pauses during resize, and so that we can lock the REM heap in memory on startup to prevent any of it from being swapped REM out.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.2K bytes - Viewed (0) -
src/main/resources/fess_message_it.properties
constraints.DecimalMin.message = {item} deve essere maggiore di {value}. constraints.Digits.message = {item} deve essere un numero. (Atteso: <numero>.<numero>) constraints.Future.message = {item} deve essere una data futura. constraints.Max.message = {item} deve essere minore o uguale a {value}. constraints.Min.message = {item} deve essere maggiore o uguale a {value}. constraints.NotNull.message = {item} รจ obbligatorio. constraints.Null.message = {item} deve essere nullo.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
assertThrows(IllegalArgumentException.class, () -> max()); } public void testMax() { assertThat(max(GREATEST)).isEqualTo(GREATEST); assertThat(max(LEAST)).isEqualTo(LEAST); assertThat(max(8.0f, 6.0f, 7.0f, 5.0f, 3.0f, 0.0f, 9.0f)).isEqualTo(9.0f); assertThat(max(-0f, 0f)).isEqualTo(0f); assertThat(max(0f, -0f)).isEqualTo(0f); assertThat(max(NUMBERS)).isEqualTo(GREATEST);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatsTest.java
assertThrows(IllegalArgumentException.class, () -> max()); } public void testMax() { assertThat(max(GREATEST)).isEqualTo(GREATEST); assertThat(max(LEAST)).isEqualTo(LEAST); assertThat(max(8.0f, 6.0f, 7.0f, 5.0f, 3.0f, 0.0f, 9.0f)).isEqualTo(9.0f); assertThat(max(-0f, 0f)).isEqualTo(0f); assertThat(max(0f, -0f)).isEqualTo(0f); assertThat(max(NUMBERS)).isEqualTo(GREATEST);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java
* the License. */ package com.google.common.collect; import static com.google.common.collect.Maps.immutableEntry; import static com.google.common.truth.Truth.assertThat; import static java.lang.Math.max; import com.google.common.collect.testing.MapTestSuiteBuilder; import com.google.common.collect.testing.TestStringMapGenerator; import com.google.common.collect.testing.features.CollectionFeature;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
if (attempts > halfOpenMaxAttempts) { log.warn("[{}] Exceeded max attempts in HALF_OPEN state, reopening circuit", name); transitionTo(State.OPEN); throw new CircuitOpenException("Circuit breaker '" + name + "' reopened after max attempts"); } } try { T result = operation.get();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
// Capabilities SMBUtil.writeInt4(Smb2Constants.SMB2_GLOBAL_CAP_DFS, buffer, offset + 24); // Max transact size SMBUtil.writeInt4(1048576, buffer, offset + 28); // Max read size SMBUtil.writeInt4(1048576, buffer, offset + 32); // Max write size SMBUtil.writeInt4(1048576, buffer, offset + 36); // System time
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/UrlEscaperTesting.java
assertEquals("", e.escape("")); assertEquals("safestring", e.escape("safestring")); assertEquals("embedded%00null", e.escape("embedded\0null")); assertEquals("max%EF%BF%BFchar", e.escape("max\uffffchar")); } // Helper to assert common expected behaviour of uri escapers. static void assertBasicUrlEscaper(UnicodeEscaper e) { assertBasicUrlEscaperExceptPercent(e);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.6K bytes - Viewed (0) -
cmd/server-rlimit.go
return currentKernel < kernel.Version(4, 0, 0) } func setMaxResources(ctx serverCtxt) (err error) { // Set the Go runtime max threads threshold to 90% of kernel setting. sysMaxThreads, err := sys.GetMaxThreads() if err == nil { minioMaxThreads := (sysMaxThreads * 90) / 100 // Only set max threads if it is greater than the default one if minioMaxThreads > 10000 { debug.SetMaxThreads(minioMaxThreads) } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Jul 02 15:09:36 UTC 2024 - 2.8K bytes - Viewed (0)