- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 373 for 13 (0.05 sec)
-
regression-test/README.md
... 11:55:40 I/XmlResultReporter: XML test result file generated at /Users/myusername/workspace/okhttp/regression-test/build/outputs/regression-results/connected/TEST-pixel3a-Q(AVD) - 10-android-test-.xml. Total tests 13, passed 11, assumption_failure 1, ignored 1, ... BUILD SUCCESSFUL in 1m 30s 63 actionable tasks: 61 executed, 2 up-to-date ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 2.5K bytes - Viewed (0) -
ci/official/envs/nightly_upload
TFCI_ARTIFACT_STAGING_GCS_ENABLE=1 TFCI_ARTIFACT_STAGING_GCS_URI="gs://tensorflow-ci-staging/staging/nightly/$(git rev-parse HEAD)/" # 2. The internal version numbers get changed TFCI_NIGHTLY_UPDATE_VERSION_ENABLE=1 # 3. Push results to public build cache (unique cache for MacOS) if [[ $(uname -s) == "Darwin" ]]; then TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache_push" else
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jun 17 20:45:36 UTC 2024 - 1.7K bytes - Viewed (0) -
buildscripts/verify-healing-with-root-disks.sh
echo "A root disk is formatted unexpectedely" cat "${WORK_DIR}/server4.log" exit -1 fi } function cleanup() { pkill minio sudo umount ${WORK_DIR}/mnt/disk{1..3}/ sudo rm /dev/minio-loopdisk* rm -rf "$WORK_DIR" } (prepare_block_devices) (main "$@") rv=$? cleanup
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 26 05:07:25 UTC 2023 - 2.2K bytes - Viewed (0) -
cmd/data-usage-cache_test.go
want: map[string]uint64{ "LESS_THAN_1024_B": 2, "BETWEEN_64_KB_AND_256_KB": 2, "BETWEEN_1024B_AND_1_MB": 2, }, }, { sizes: []int64{100, 1000, 2000, 100_000, 13 * humanize.MiByte}, want: map[string]uint64{ "LESS_THAN_1024_B": 2, "BETWEEN_1024_B_AND_64_KB": 1, "BETWEEN_64_KB_AND_256_KB": 1, "BETWEEN_1024B_AND_1_MB": 2, "BETWEEN_10_MB_AND_64_MB": 1,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Jan 13 07:51:08 UTC 2024 - 2.6K bytes - Viewed (0) -
internal/grid/handlers_string.go
_ = x[HandlerLockForceUnlock-6] _ = x[HandlerWalkDir-7] _ = x[HandlerStatVol-8] _ = x[HandlerDiskInfo-9] _ = x[HandlerNSScanner-10] _ = x[HandlerReadXL-11] _ = x[HandlerReadVersion-12] _ = x[HandlerDeleteFile-13] _ = x[HandlerDeleteVersion-14] _ = x[HandlerUpdateMetadata-15] _ = x[HandlerWriteMetadata-16] _ = x[HandlerCheckParts-17] _ = x[HandlerRenameData-18] _ = x[HandlerRenameFile-19] _ = x[HandlerReadAll-20]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 4.4K bytes - Viewed (0) -
ci/official/containers/linux_arm64/setup.python.sh
set -xe source ~/.bashrc VERSION=$1 REQUIREMENTS=$2 add-apt-repository ppa:deadsnakes/ppa # Install Python packages for this container's version if [[ ${VERSION} == "python3.13" ]]; then cat >pythons.txt <<EOF $VERSION $VERSION-dev $VERSION-venv EOF else cat >pythons.txt <<EOF $VERSION $VERSION-dev $VERSION-venv EOF fi /setup.packages.sh pythons.txt
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 01 12:56:16 UTC 2024 - 2.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FormBodyTest.kt
// Browsers convert '\r' to '\r\n' assertThat(formEncode(13)).isEqualTo("%0D") assertThat(formEncode(14)).isEqualTo("%0E") assertThat(formEncode(15)).isEqualTo("%0F") assertThat(formEncode(16)).isEqualTo("%10") assertThat(formEncode(17)).isEqualTo("%11") assertThat(formEncode(18)).isEqualTo("%12") assertThat(formEncode(19)).isEqualTo("%13") assertThat(formEncode(20)).isEqualTo("%14")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java
LinkedListMultimap<String, Integer> multimap = LinkedListMultimap.create(20); multimap.put("foo", 1); multimap.put("bar", 2); multimap.put("foo", 3); assertEquals(ImmutableList.of(1, 3), multimap.get("foo")); } public void testCreateFromIllegalSize() { assertThrows(IllegalArgumentException.class, () -> LinkedListMultimap.create(-20)); } public void testLinkedGetAdd() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18K bytes - Viewed (0) -
android-test/README.md
... 11:55:40 I/XmlResultReporter: XML test result file generated at /Users/myusername/workspace/okhttp/android-test/build/outputs/androidTest-results/connected/TEST-pixel3a-Q(AVD) - 10-android-test-.xml. Total tests 13, passed 11, assumption_failure 1, ignored 1, ... BUILD SUCCESSFUL in 1m 30s 63 actionable tasks: 61 executed, 2 up-to-date ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Feb 14 08:26:50 UTC 2023 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
h1 ^= k1; h1 = Integer.rotateLeft(h1, 13); h1 = h1 * 5 + 0xe6546b64; return h1; } // Finalization mix - force all bits of a hash block to avalanche private static HashCode fmix(int h1, int length) { h1 ^= length; h1 ^= h1 >>> 16; h1 *= 0x85ebca6b; h1 ^= h1 >>> 13; h1 *= 0xc2b2ae35; h1 ^= h1 >>> 16; return HashCode.fromInt(h1);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 11.8K bytes - Viewed (0)