- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 76 for 1435 (0.35 sec)
-
api/go1.8.txt
pkg syscall (openbsd-amd64), const SYS_KILL = 122 pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 122 pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY = 145 pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY Errno pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY = 145 pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY Errno pkg testing, func CoverMode() string
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Dec 21 05:25:57 UTC 2016 - 16.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/MathTesting.java
if (x != Math.round(x)) { fractionalBuilder.add(x); } } } INTEGRAL_DOUBLE_CANDIDATES = integralBuilder.build(); fractionalBuilder.add(1.414).add(1.415).add(Math.sqrt(2)); fractionalBuilder.add(5.656).add(5.657).add(4 * Math.sqrt(2)); for (double d : INTEGRAL_DOUBLE_CANDIDATES) { double x = 1 / d; if (x != Math.rint(x)) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 11.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/MathTesting.java
if (x != Math.round(x)) { fractionalBuilder.add(x); } } } INTEGRAL_DOUBLE_CANDIDATES = integralBuilder.build(); fractionalBuilder.add(1.414).add(1.415).add(Math.sqrt(2)); fractionalBuilder.add(5.656).add(5.657).add(4 * Math.sqrt(2)); for (double d : INTEGRAL_DOUBLE_CANDIDATES) { double x = 1 / d; if (x != Math.rint(x)) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 11.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
B = HH(B, C, D, A, X[12], 15); A = HH(A, B, C, D, X[ 2], 3); D = HH(D, A, B, C, X[10], 9); C = HH(C, D, A, B, X[ 6], 11); B = HH(B, C, D, A, X[14], 15); A = HH(A, B, C, D, X[ 1], 3); D = HH(D, A, B, C, X[ 9], 9); C = HH(C, D, A, B, X[ 5], 11); B = HH(B, C, D, A, X[13], 15); A = HH(A, B, C, D, X[ 3], 3);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 9.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
// Integer.valueOf(int), and some that are not cached. (127 is the highest cached value.) static final int WARMUP_MIN = 120; static final int WARMUP_MAX = 135; static final int WARMUP_SIZE = WARMUP_MAX - WARMUP_MIN; public void testSize_populated() { for (LoadingCache<Object, Object> cache : caches()) { // don't let the entries get GCed
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 02 18:21:29 UTC 2024 - 15K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (linux-amd64), const SYS_RT_TGSIGQUEUEINFO = 297 pkg syscall (linux-amd64), const SYS_SCHED_GETAFFINITY = 204 pkg syscall (linux-amd64), const SYS_SCHED_GETPARAM = 143 pkg syscall (linux-amd64), const SYS_SCHED_GETSCHEDULER = 145 pkg syscall (linux-amd64), const SYS_SCHED_GET_PRIORITY_MAX = 146 pkg syscall (linux-amd64), const SYS_SCHED_GET_PRIORITY_MIN = 147
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md
//// tab | Python 3.9+ ```Python hl_lines="15-16" {!> ../../docs_src/dependencies/tutorial008c_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="14-15" {!> ../../docs_src/dependencies/tutorial008c_an.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | 提示 如果可以,请尽量使用 `Annotated` 版本。 /// ```Python hl_lines="13-14"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1, 2}, 1, new float[] {2, 1}); testRotate(new float[] {1, 2}, 2, new float[] {1, 2}); testRotate(new float[] {1, 2}, 3, new float[] {2, 1}); testRotate(new float[] {1, 2, 3}, -5, new float[] {3, 1, 2}); testRotate(new float[] {1, 2, 3}, -4, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3}, -3, new float[] {1, 2, 3}); testRotate(new float[] {1, 2, 3}, -2, new float[] {3, 1, 2});
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
testRotate(new int[] {1, 2}, 1, new int[] {2, 1}); testRotate(new int[] {1, 2}, 2, new int[] {1, 2}); testRotate(new int[] {1, 2}, 3, new int[] {2, 1}); testRotate(new int[] {1, 2, 3}, -5, new int[] {3, 1, 2}); testRotate(new int[] {1, 2, 3}, -4, new int[] {2, 3, 1}); testRotate(new int[] {1, 2, 3}, -3, new int[] {1, 2, 3}); testRotate(new int[] {1, 2, 3}, -2, new int[] {3, 1, 2});
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
testRotate(new double[] {1, 2}, 1, new double[] {2, 1}); testRotate(new double[] {1, 2}, 2, new double[] {1, 2}); testRotate(new double[] {1, 2}, 3, new double[] {2, 1}); testRotate(new double[] {1, 2, 3}, -5, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, -4, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3}, -3, new double[] {1, 2, 3});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 32.2K bytes - Viewed (0)