Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for horizontal (0.24 sec)

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

       * (The inverse of this will be a horizontal transformation.)
       */
      public static LinearTransformation vertical(double x) {
        checkArgument(isFinite(x));
        return new VerticalLinearTransformation(x);
      }
    
      /**
       * Builds an instance representing a horizontal transformation with a constant value of {@code y}.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double y = 1.2;
        LinearTransformation transformation = LinearTransformation.horizontal(y);
        assertHorizontalLinearTransformation(transformation, y);
      }
    
      public void testHorizontal_infiniteY() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.horizontal(Double.POSITIVE_INFINITY));
      }
    
      public void testHorizontal_nanY() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double y = 1.2;
        LinearTransformation transformation = LinearTransformation.horizontal(y);
        assertHorizontalLinearTransformation(transformation, y);
      }
    
      public void testHorizontal_infiniteY() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.horizontal(Double.POSITIVE_INFINITY));
      }
    
      public void testHorizontal_nanY() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/math/PairedStatsTest.java

                stats.xStats().populationVariance(),
                stats.populationCovariance());
          }
        }
        assertHorizontalLinearTransformation(
            HORIZONTAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            HORIZONTAL_VALUES_PAIRED_STATS.yStats().mean());
        assertVerticalLinearTransformation(
            VERTICAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            VERTICAL_VALUES_PAIRED_STATS.xStats().mean());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

                stats.xStats().populationVariance(),
                stats.populationCovariance());
          }
        }
        assertHorizontalLinearTransformation(
            HORIZONTAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            HORIZONTAL_VALUES_PAIRED_STATS.yStats().mean());
        assertVerticalLinearTransformation(
            VERTICAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            VERTICAL_VALUES_PAIRED_STATS.xStats().mean());
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/StatsTesting.java

        checkArgument(xDelta != 0.0);
        checkArgument(yDelta != 0.0);
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isFalse();
        assertThat(transformation.inverse().isHorizontal()).isFalse();
        assertThat(transformation.inverse().isVertical()).isFalse();
        assertThat(transformation.transform(x1)).isWithin(ALLOWED_ERROR).of(y1);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/math/StatsTesting.java

        checkArgument(xDelta != 0.0);
        checkArgument(yDelta != 0.0);
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isFalse();
        assertThat(transformation.inverse().isHorizontal()).isFalse();
        assertThat(transformation.inverse().isVertical()).isFalse();
        assertThat(transformation.transform(x1)).isWithin(ALLOWED_ERROR).of(y1);
    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)
  8. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       * either the {@code x} or {@code y} data must have a non-zero population variance (i.e. {@code
       * xStats().populationVariance() > 0.0 || yStats().populationVariance() > 0.0}). The result is
       * guaranteed to be horizontal if there is variance in the {@code x} data but not the {@code y}
       * data, and vertical if there is variance in the {@code y} data but not the {@code x} data.
       *
    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)
  9. manifests/addons/dashboards/istio-mesh-dashboard.json

          },
          "id": 20,
          "links": [],
          "maxDataPoints": 100,
          "options": {
            "colorMode": "none",
            "graphMode": "area",
            "justifyMode": "auto",
            "orientation": "horizontal",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
            "textMode": "auto"
          },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 02:28:01 GMT 2024
    - 46.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // Standard list metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of horizontal pod autoscaler objects.
      repeated HorizontalPodAutoscaler items = 2;
    }
    
    // specification of a horizontal pod autoscaler.
    message HorizontalPodAutoscalerSpec {
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22K bytes
    - Viewed (0)
Back to top