Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 811 for min (0.15 sec)

  1. 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() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/SignedBytesTest.java

      }
    
      public void testMin_noArgs() {
        try {
          SignedBytes.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(SignedBytes.min(LEAST)).isEqualTo(LEAST);
        assertThat(SignedBytes.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(SignedBytes.min((byte) 0, (byte) -128, (byte) -1, (byte) 127, (byte) 1))
            .isEqualTo((byte) -128);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. docs/federation/lookup/README.md

    # Federation Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) *Federation feature is deprecated and should be avoided for future deployments*
    
    This document explains how to configure MinIO with `Bucket lookup from DNS` style federation.
    
    ## Get started
    
    ### 1. Prerequisites
    
    Install MinIO - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux).
    
    ### 2. Run MinIO in federated mode
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

      }
    
      public void testMin_noArgs() {
        try {
          UnsignedLongs.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(UnsignedLongs.min(LEAST)).isEqualTo(LEAST);
        assertThat(UnsignedLongs.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
                UnsignedLongs.min(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:36:17 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  5. README.md

    | 64-bit Intel/AMD               | <https://dl.min.io/server/minio/release/linux-amd64/minio>   |
    | 64-bit ARM                     | <https://dl.min.io/server/minio/release/linux-arm64/minio>   |
    | 64-bit PowerPC LE (ppc64le)    | <https://dl.min.io/server/minio/release/linux-ppc64le/minio> |
    | IBM Z-Series (S390X)           | <https://dl.min.io/server/minio/release/linux-s390x/minio>   |
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ComparatorsTest.java

      public void testMinMaxNatural() {
        assertThat(Comparators.min(1, 2)).isEqualTo(1);
        assertThat(Comparators.min(2, 1)).isEqualTo(1);
        assertThat(Comparators.max(1, 2)).isEqualTo(2);
        assertThat(Comparators.max(2, 1)).isEqualTo(2);
      }
    
      public void testMinMaxNatural_equalInstances() {
        Foo a = new Foo(1);
        Foo b = new Foo(1);
        assertThat(Comparators.min(a, b)).isSameInstanceAs(a);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 11 08:42:51 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        public String configParameter;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
        @ValidateTypeFailure
        public Long maxAccessCount;
    
        @Required
        @Size(max = 200)
        public String userAgent;
    
        @Required
        @Min(value = 1)
        @Max(value = 2147483647)
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  8. docs/orchestration/docker-compose/README.md

      Read more about distributed MinIO [here](https://min.io/docs/minio/container/operations/install-deploy-manage/deploy-minio-single-node-multi-drive.html).
    
    ### Explore Further
    
    * [Overview of Docker Compose](https://docs.docker.com/compose/overview/)
    * [MinIO Docker Quickstart Guide](https://min.io/docs/minio/container/index.html#quickstart-for-containers)
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 31 19:20:56 GMT 2023
    - 3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

      }
    
      public void testMin_noArgs() {
        try {
          UnsignedInts.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(UnsignedInts.min(LEAST)).isEqualTo(LEAST);
        assertThat(UnsignedInts.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
                UnsignedInts.min(
                    (int) 8L,
                    (int) 6L,
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

        for (int i = -3; i <= 3; i++) {
          testIntsBuilder
              .add(i)
              .add(force32(Integer.MIN_VALUE + i))
              .add(force32(Integer.MAX_VALUE + i));
          testLongsBuilder
              .add((long) i)
              .add((long) Integer.MIN_VALUE + i)
              .add((long) Integer.MAX_VALUE + i)
              .add((1L << 32) + i);
        }
        TEST_INTS = testIntsBuilder.build();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Jun 01 09:32:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
Back to top