- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for percentile90 (0.08 seconds)
-
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++) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 3.2K bytes - Click Count (0) -
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); * } *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 30.1K bytes - Click Count (0) -
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++) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:45:32 GMT 2025 - 29.8K bytes - Click Count (0) -
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++) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:45:32 GMT 2025 - 29.8K bytes - Click Count (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
* @return average response time in milliseconds */ public long getAverageResponseTime() { return avgResponseTime.get(); } /** * Get 95th percentile response time * * @return 95th percentile response time in milliseconds */ public long getP95ResponseTime() { return p95ResponseTime.get(); } /** * Get minimum response time *Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 33.4K bytes - Click Count (0) -
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) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12.4K bytes - Click Count (0) -
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) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12.4K bytes - Click Count (0) -
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) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12.4K bytes - Click Count (0) -
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.
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Wed Oct 23 20:13:20 GMT 2024 - 345.2K bytes - Click Count (0)