- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for y1 (0.02 sec)
-
android/guava-tests/test/com/google/common/math/LinearTransformationTest.java
public void testMappingAnd_regular() { double x1 = 1.2; double y1 = 3.4; double xDelta = 5.6; double yDelta = 7.8; LinearTransformation transformation = LinearTransformation.mapping(x1, y1).and(x1 + xDelta, y1 + yDelta); assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, yDelta); } public void testMappingAnd_horizontal() { double x1 = 1.2;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 7.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LinearTransformationTest.java
public void testMappingAnd_regular() { double x1 = 1.2; double y1 = 3.4; double xDelta = 5.6; double yDelta = 7.8; LinearTransformation transformation = LinearTransformation.mapping(x1, y1).and(x1 + xDelta, y1 + yDelta); assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, yDelta); } public void testMappingAnd_horizontal() { double x1 = 1.2;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 7.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64error.s
VADDPD.RN_SAE X3, X2, K1, X1 // ERROR "unsupported rounding" VADDPD.RU_SAE Y3, Y2, K1, Y1 // ERROR "unsupported rounding" VADDPD.RD_SAE Y3, Y2, K1, Y1 // ERROR "unsupported rounding" VADDPD.RZ_SAE Y3, Y2, K1, Y1 // ERROR "unsupported rounding" VADDPD.RN_SAE Y3, Y2, K1, Y1 // ERROR "unsupported rounding" // Unsupported SAE.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jun 14 00:03:57 UTC 2023 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java
itemList.add(new SynonymItem(4, new String[] { "x1", "X1" }, new String[] { "x1", "X1" })); itemList.add(new SynonymItem(5, new String[] { "y1", "Y1", "y2" }, new String[] { "y1", "Y1", "y2" })); synonymFile.synonymItemList = itemList; } public void test_selectList() { final PagingList<SynonymItem> itemList1 = synonymFile.selectList(0, 20); // error occurs
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vpopcntdq.s
VPOPCNTQ Y5, K2, Y1 // 62f2fd2a55cd VPOPCNTQ Y17, K2, Y1 // 62b2fd2a55c9 VPOPCNTQ Y13, K2, Y1 // 62d2fd2a55cd VPOPCNTQ 7(AX)(CX*4), K2, Y1 // 62f2fd2a558c8807000000 VPOPCNTQ 7(AX)(CX*1), K2, Y1 // 62f2fd2a558c0807000000
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 22 14:57:15 UTC 2018 - 5.5K bytes - Viewed (0) -
internal/s3select/sql/timestampfuncs.go
} return v, err } duration := ts2.Sub(ts1) y1, m1, d1 := ts1.Date() y2, m2, d2 := ts2.Date() switch timePart { case timePartYear: dy := int64(y2 - y1) if m2 > m1 || (m2 == m1 && d2 >= d1) { return FromInt(dy), nil } return FromInt(dy - 1), nil case timePartMonth: m1 += time.Month(12 * y1) m2 += time.Month(12 * y2) return FromInt(int64(m2 - m1)), nil
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 4.8K bytes - Viewed (0)