Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for sampleStandardDeviation (0.15 seconds)

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

        assertThrows(IllegalStateException.class, EMPTY_STATS_VARARGS::sampleStandardDeviation);
        assertThrows(IllegalStateException.class, EMPTY_STATS_ITERABLE::sampleStandardDeviation);
        assertThrows(IllegalStateException.class, ONE_VALUE_STATS::sampleStandardDeviation);
        assertThat(TWO_VALUES_STATS.sampleStandardDeviation())
            .isWithin(ALLOWED_ERROR)
            .of(sqrt(TWO_VALUES_SUM_OF_SQUARES_OF_DELTAS));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 33.4K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThrows(IllegalStateException.class, () -> emptyAccumulator.sampleStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyIterable.sampleStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyStats.sampleStandardDeviation());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 37.1K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThrows(IllegalStateException.class, () -> emptyAccumulator.sampleStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyIterable.sampleStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyStats.sampleStandardDeviation());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 37.1K bytes
    - Click Count (0)
Back to Top