Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PairedStatsAccumulator (0.26 sec)

  1. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

     *
     * @author Pete Gillin
     * @since 20.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class PairedStatsAccumulator {
    
      // These fields must satisfy the requirements of PairedStats' constructor as well as those of the
      // stat methods of this class.
      private final StatsAccumulator xStats = new StatsAccumulator();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/StatsTesting.java

        PairedStatsAccumulator accumulator = new PairedStatsAccumulator();
        for (double y : OTHER_MANY_VALUES) {
          accumulator.add(ONE_VALUE, y);
        }
        return accumulator.snapshot();
      }
    
      private static PairedStats buildConstantValuesPairedStats() {
        PairedStatsAccumulator accumulator = new PairedStatsAccumulator();
        for (int i = 0; i < MANY_VALUES_COUNT; ++i) {
    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)
  3. android/guava-tests/test/com/google/common/math/StatsTesting.java

        PairedStatsAccumulator accumulator = new PairedStatsAccumulator();
        for (double y : OTHER_MANY_VALUES) {
          accumulator.add(ONE_VALUE, y);
        }
        return accumulator.snapshot();
      }
    
      private static PairedStats buildConstantValuesPairedStats() {
        PairedStatsAccumulator accumulator = new PairedStatsAccumulator();
        for (int i = 0; i < MANY_VALUES_COUNT; ++i) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

    public class PairedStatsAccumulatorTest extends TestCase {
    
      private PairedStatsAccumulator emptyAccumulator;
      private PairedStatsAccumulator emptyAccumulatorByAddAllEmptyPairedStats;
      private PairedStatsAccumulator oneValueAccumulator;
      private PairedStatsAccumulator oneValueAccumulatorByAddAllEmptyPairedStats;
      private PairedStatsAccumulator twoValuesAccumulator;
      private PairedStatsAccumulator twoValuesAccumulatorByAddAllPartitionedPairedStats;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

    public class PairedStatsAccumulatorTest extends TestCase {
    
      private PairedStatsAccumulator emptyAccumulator;
      private PairedStatsAccumulator emptyAccumulatorByAddAllEmptyPairedStats;
      private PairedStatsAccumulator oneValueAccumulator;
      private PairedStatsAccumulator oneValueAccumulatorByAddAllEmptyPairedStats;
      private PairedStatsAccumulator twoValuesAccumulator;
      private PairedStatsAccumulator twoValuesAccumulatorByAddAllPartitionedPairedStats;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/PairedStats.java

       * point values. Two instances are guaranteed to be considered equal if one is copied from the
       * other using {@code second = new PairedStatsAccumulator().addAll(first).snapshot()}, if both
       * were obtained by calling {@code snapshot()} on the same {@link PairedStatsAccumulator} without
       * adding any values in between the two calls, or if one is obtained from the other after
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/math/PairedStatsTest.java

    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    import junit.framework.TestCase;
    
    /**
     * Tests for {@link PairedStats}. This tests instances created by {@link
     * PairedStatsAccumulator#snapshot}.
     *
     * @author Pete Gillin
     */
    public class PairedStatsTest extends TestCase {
    
      public void testCount() {
        assertThat(EMPTY_PAIRED_STATS.count()).isEqualTo(0);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    import junit.framework.TestCase;
    
    /**
     * Tests for {@link PairedStats}. This tests instances created by {@link
     * PairedStatsAccumulator#snapshot}.
     *
     * @author Pete Gillin
     */
    public class PairedStatsTest extends TestCase {
    
      public void testCount() {
        assertThat(EMPTY_PAIRED_STATS.count()).isEqualTo(0);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
Back to top