Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for percentiles (0.06 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesTest.java

              .that(percentiles().index(index).compute(PSEUDORANDOM_DATASET))
              .isWithin(ALLOWED_ERROR)
              .of(expectedLargeDatasetPercentile(index));
        }
      }
    
      @AndroidIncompatible // slow
      public void testPercentiles_index_computeInPlace() {
        // Assert that the computation gives the correct result for all possible percentiles.
        for (int index = 0; index <= 100; index++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/QuantilesTest.java

              .that(percentiles().index(index).compute(PSEUDORANDOM_DATASET))
              .isWithin(ALLOWED_ERROR)
              .of(expectedLargeDatasetPercentile(index));
        }
      }
    
      @AndroidIncompatible // slow
      public void testPercentiles_index_computeInPlace() {
        // Assert that the computation gives the correct result for all possible percentiles.
        for (int index = 0; index <= 100; index++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/Quantiles.java

     *
     * <p>To compute the 99th percentile:
     *
     * {@snippet :
     * double myPercentile99 = percentiles().index(99).compute(myDataset);
     * }
     *
     * where {@link #percentiles()} has been statically imported.
     *
     * <p>To compute median and the 90th and 99th percentiles:
     *
     * {@snippet :
     * Map<Integer, Double> myPercentiles =
     *     percentiles().indexes(50, 90, 99).compute(myDataset);
     * }
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionAggregation.java

            regA(builder);
            return builder;
        }
    
        protected PercentilesAggregationBuilder regPercentilesA(String name, String field) {
            PercentilesAggregationBuilder builder = AggregationBuilders.percentiles(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected PercentileRanksAggregationBuilder regPercentileRanksA(String name, String field, double[] values) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionAggregation.java

            regA(builder);
            return builder;
        }
    
        protected PercentilesAggregationBuilder regPercentilesA(String name, String field) {
            PercentilesAggregationBuilder builder = AggregationBuilders.percentiles(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected PercentileRanksAggregationBuilder regPercentileRanksA(String name, String field, double[] values) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionAggregation.java

            regA(builder);
            return builder;
        }
    
        protected PercentilesAggregationBuilder regPercentilesA(String name, String field) {
            PercentilesAggregationBuilder builder = AggregationBuilders.percentiles(name).field(field);
            regA(builder);
            return builder;
        }
    
        protected PercentileRanksAggregationBuilder regPercentileRanksA(String name, String field, double[] values) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/math/QuantilesBenchmark.java

        }
        return dummy;
      }
    
      @Benchmark
      double percentile90(int reps) {
        double dummy = 0.0;
        for (int i = 0; i < reps; i++) {
          dummy += algorithm.singleQuantile(90, 100, dataset(i));
        }
        return dummy;
      }
    
      @Benchmark
      double percentile99(int reps) {
        double dummy = 0.0;
        for (int i = 0; i < reps; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.16.md

      - `http_404_request_total` (the number of 404 requests handled)
      - `http_404_request_duration_ms` (the amount of time the server took to respond in ms)
    
      Also includes percentile groupings. The directory for the default 404 handler includes instructions on how to enable prometheus for monitoring and setting alerts.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 345.2K bytes
    - Viewed (0)
Back to top