Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Vega (0.14 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java

            AvgAggregationBuilder builder = AggregationBuilders.avg(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MaxAggregationBuilder regMaxA(String name, String field) {
            MaxAggregationBuilder builder = AggregationBuilders.max(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MinAggregationBuilder regMinA(String name, String field) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThat(accumulator.count()).isEqualTo(MEGA_STREAM_COUNT);
        assertThat(accumulator.mean()).isWithin(ALLOWED_ERROR * MEGA_STREAM_COUNT).of(MEGA_STREAM_MEAN);
        assertThat(accumulator.populationVariance())
            .isWithin(ALLOWED_ERROR * MEGA_STREAM_COUNT)
            .of(MEGA_STREAM_POPULATION_VARIANCE);
        assertThat(accumulator.min()).isEqualTo(MEGA_STREAM_MIN);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 36.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/StatsTest.java

        assertThat(stats.count()).isEqualTo(MEGA_STREAM_COUNT);
        assertThat(stats.mean()).isWithin(ALLOWED_ERROR * MEGA_STREAM_COUNT).of(MEGA_STREAM_MEAN);
        assertThat(stats.populationVariance())
            .isWithin(ALLOWED_ERROR * MEGA_STREAM_COUNT)
            .of(MEGA_STREAM_POPULATION_VARIANCE);
        assertThat(stats.min()).isEqualTo(MEGA_STREAM_MIN);
        assertThat(stats.max()).isEqualTo(MEGA_STREAM_MAX);
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 32.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/math/StatsTesting.java

      }
    
      static final long MEGA_STREAM_COUNT = isAndroid() ? 100 : 1_000_000;
      static final double MEGA_STREAM_MIN = 0.0;
      static final double MEGA_STREAM_MAX = MEGA_STREAM_COUNT - 1;
      static final double MEGA_STREAM_MEAN = MEGA_STREAM_MAX / 2;
      static final double MEGA_STREAM_POPULATION_VARIANCE =
          (MEGA_STREAM_COUNT - 1) * (MEGA_STREAM_COUNT + 1) / 12.0;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 23.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java

            AvgAggregationBuilder builder = AggregationBuilders.avg(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MaxAggregationBuilder regMaxA(String name, String field) {
            MaxAggregationBuilder builder = AggregationBuilders.max(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MinAggregationBuilder regMinA(String name, String field) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java

            AvgAggregationBuilder builder = AggregationBuilders.avg(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MaxAggregationBuilder regMaxA(String name, String field) {
            MaxAggregationBuilder builder = AggregationBuilders.max(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected MinAggregationBuilder regMinA(String name, String field) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top