- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for L1212 (0.02 sec)
-
tests/hooks_test.go
if product.Price != 150 || product.Code != "L1212" { t.Errorf("invalid data after update, got %+v", product) } // Code not changed, price should not change DB.Model(&product).Updates(map[string]interface{}{"Name": "Product New"}) if product.Name != "Product New" || product.Price != 160 || product.Code != "L1212" {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 17 03:59:06 UTC 2024 - 16.7K bytes - Viewed (0) -
.github/workflows/update-rbe.yml
map sigbuild-r2.12-python3.8 2.12-python3.8 map sigbuild-r2.12-python3.9 2.12-python3.9 map sigbuild-r2.12-python3.10 2.12-python3.10 map sigbuild-r2.12-python3.11 2.12-python3.11 # TF 2.12 + Clang (containers are the same, but env vars in configs.bzl are different) map sigbuild-r2.12-clang 2.12-python3.9 map sigbuild-r2.12-clang-python3.8 2.12-python3.8
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 7.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/BytesTest.java
testReverse(new byte[] {3, 1, 1}, 0, 2, new byte[] {1, 3, 1}); testReverse(new byte[] {3, 1, 1}, 0, 1, new byte[] {3, 1, 1}); testReverse(new byte[] {-1, 1, -2, 2}, 1, 3, new byte[] {-1, -2, 1, 2}); } private static void testRotate(byte[] input, int distance, byte[] expectedOutput) { input = Arrays.copyOf(input, input.length); Bytes.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/BytesTest.java
testReverse(new byte[] {3, 1, 1}, 0, 2, new byte[] {1, 3, 1}); testReverse(new byte[] {3, 1, 1}, 0, 1, new byte[] {3, 1, 1}); testReverse(new byte[] {-1, 1, -2, 2}, 1, 3, new byte[] {-1, -2, 1, 2}); } private static void testRotate(byte[] input, int distance, byte[] expectedOutput) { input = Arrays.copyOf(input, input.length); Bytes.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
testReverse(new double[] {3, 1, 1}, 0, 2, new double[] {1, 3, 1}); testReverse(new double[] {3, 1, 1}, 0, 1, new double[] {3, 1, 1}); testReverse(new double[] {-1, 1, -2, 2}, 1, 3, new double[] {-1, -2, 1, 2}); } private static void testRotate(double[] input, int distance, double[] expectedOutput) { input = Arrays.copyOf(input, input.length); Doubles.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 32.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
} public void testToSet() { assertThat(fluent(1, 2, 3, 4).toSet()).containsExactly(1, 2, 3, 4).inOrder(); } public void testToSet_removeDuplicates() { assertThat(fluent(1, 2, 1, 2).toSet()).containsExactly(1, 2).inOrder(); } public void testToSet_empty() { assertTrue(fluent().toSet().isEmpty()); } public void testToSortedSet() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 30.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
testReverse(new float[] {3, 1, 1}, 0, 2, new float[] {1, 3, 1}); testReverse(new float[] {3, 1, 1}, 0, 1, new float[] {3, 1, 1}); testReverse(new float[] {-1, 1, -2, 2}, 1, 3, new float[] {-1, -2, 1, 2}); } private static void testRotate(float[] input, int distance, float[] expectedOutput) { input = Arrays.copyOf(input, input.length); Floats.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 30.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
testReverse(new int[] {3, 1, 1}, 0, 2, new int[] {1, 3, 1}); testReverse(new int[] {3, 1, 1}, 0, 1, new int[] {3, 1, 1}); testReverse(new int[] {-1, 1, -2, 2}, 1, 3, new int[] {-1, -2, 1, 2}); } private static void testRotate(int[] input, int distance, int[] expectedOutput) { input = Arrays.copyOf(input, input.length); Ints.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/DoublesTest.java
testReverse(new double[] {3, 1, 1}, 0, 2, new double[] {1, 3, 1}); testReverse(new double[] {3, 1, 1}, 0, 1, new double[] {3, 1, 1}); testReverse(new double[] {-1, 1, -2, 2}, 1, 3, new double[] {-1, -2, 1, 2}); } private static void testRotate(double[] input, int distance, double[] expectedOutput) { input = Arrays.copyOf(input, input.length); Doubles.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 32.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatsTest.java
testReverse(new float[] {3, 1, 1}, 0, 2, new float[] {1, 3, 1}); testReverse(new float[] {3, 1, 1}, 0, 1, new float[] {3, 1, 1}); testReverse(new float[] {-1, 1, -2, 2}, 1, 3, new float[] {-1, -2, 1, 2}); } private static void testRotate(float[] input, int distance, float[] expectedOutput) { input = Arrays.copyOf(input, input.length); Floats.rotate(input, distance);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 30.3K bytes - Viewed (0)