Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for percentile99 (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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)
  9. CHANGELOG/CHANGELOG-1.24.md

    introduced significant changes to its garbage collection algorithm. As a result, we observed an increase in memory usage for kube-apiserver in larger an heavily loaded clusters up to ~25% (with the benefit of API call latencies drop by up to 10x on 99th percentiles). If the memory increase is not acceptable for you you can mitigate by setting GOGC env variable (for our tests using GOGC=63 brings memory usage back to original value, although the exact value may depend on usage patterns on your cluster). ([...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top