- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 563 for minl (0.02 sec)
-
guava/src/com/google/common/primitives/Doubles.java
// Reject NaN by testing for the good case (min <= max) instead of the bad (min > max). if (min <= max) { return Math.min(Math.max(value, min), max); } throw new IllegalArgumentException( lenientFormat("min (%s) must be less than or equal to max (%s)", min, max)); } /** * Returns the values from each provided array combined into a single array. For example, {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
bufDataOffset = totalParameterCount; // data comes right after data int available = maxBufferSize - parameterOffset; parameterCount = Math.min(totalParameterCount, available); available -= parameterCount; dataOffset = parameterOffset + parameterCount; pad1 = dataOffset % PADDING_SIZE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/tls/README.md
* [MinIO Client Complete Guide](https://docs.min.io/community/minio-object-store/reference/minio-mc.html) * [MinIO Network Encryption Overview](https://docs.min.io/community/minio-object-store/operations/network-encryption.html) * [Generate Let's Encrypt Certificate](https://docs.min.io/community/minio-object-store/integrations/generate-lets-encrypt-certificate-using-certbot-for-minio.html)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
android/guava/src/com/google/common/math/StatsAccumulator.java
sumOfSquaresOfDeltas = NaN; } min = Math.min(min, otherMin); max = Math.max(max, otherMax); } } /** Returns an immutable snapshot of the current statistics. */ public Stats snapshot() { return new Stats(count, mean, sumOfSquaresOfDeltas, min, max); } /** Returns the number of values. */ public long count() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 15.8K bytes - Viewed (0) -
docs/compression/README.md
- [Use `mc` with MinIO Server](https://docs.min.io/community/minio-object-store/reference/minio-mc.html) - [Use `aws-cli` with MinIO Server](https://docs.min.io/community/minio-object-store/integrations/aws-cli-with-minio.html) - [Use `minio-go` SDK with MinIO Server](https://docs.min.io/community/minio-object-store/developers/go/minio-go.html)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.2K bytes - Viewed (0) -
docs/distributed/README.md
- [MinIO Quickstart Guide for Kubernetes](https://docs.min.io/community/minio-object-store/operations/deployments/kubernetes.html). - [Deploy a Tenant from the MinIO Operator](https://docs.min.io/community/minio-object-store/operations/deployments/k8s-deploy-minio-tenant-on-kubernetes.html) Install Distributed MinIO on Linux:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/select/README.md
- [Use `mc` with MinIO Server](https://docs.min.io/community/minio-object-store/reference/minio-mc.html) - [Use `mc sql` with MinIO Server](https://docs.min.io/community/minio-object-store/reference/minio-mc/mc-sql.html#command-mc.sql) - [Use `minio-go` SDK with MinIO Server](https://docs.min.io/community/minio-object-store/developers/go/minio-go.html)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6.6K bytes - Viewed (0) -
SECURITY.md
for the past five days please contact the security team directly: - Primary security coordinator: aead@min.io - Secondary coordinator: harsha@min.io - If you receive no response: dev@min.io ### Disclosure Process MinIO uses the following disclosure process: 1. Once the security report is received one member of the security team tries to verify and reproduce
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Feb 12 00:51:25 UTC 2022 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
// Test constraint message methods with multiple parameters public void test_addConstraintsSizeMessage() { String property = "testProperty"; String min = "1"; String max = "10"; FessMessages result = messages.addConstraintsSizeMessage(property, min, max); assertNotNull(result); assertSame(messages, result); assertTrue(messages.hasMessageOf(property)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
return b; } /** * Creates a range of dialect versions between min and max. * * @param min * may be null for open end * @param max * may be null for open end * @return range of versions */ public static Set<DialectVersion> range(final DialectVersion min, final DialectVersion max) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0)