- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,855 for buildB (0.07 sec)
-
tensorflow/BUILD
match_all = [ ":is_cuda_enabled", ":windows", ], ) # Config setting to use in select()s to distinguish open source build from # google internal build on configurable attributes. # # For non-configurable distinction between OSS and Google builds, see # `if_oss()` and `if_google()` macros in tensorflow.bzl. config_setting( name = "oss", flag_values = {":oss_setting": "True"},
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
docker-buildx.sh
release=$(git describe --abbrev=0 --tags) docker buildx build --push --no-cache \ --build-arg RELEASE="${release}" \ -t "minio/minio:latest" \ -t "quay.io/minio/minio:latest" \ -t "minio/minio:${release}" \ -t "quay.io/minio/minio:${release}" \ --platform=linux/arm64,linux/amd64,linux/ppc64le \ -f Dockerfile.release . docker buildx prune -f docker buildx build --push --no-cache \ --build-arg RELEASE="${release}" \
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 14:06:17 UTC 2024 - 1.2K bytes - Viewed (0) -
ci/official/containers/linux_arm64/build.sh
AR_IMAGE="$AR_IMAGE_PATH:$target-$TAG" docker pull "$AR_IMAGE" || true # Due to some flakiness of resources pulled in the build, allow the docker # command to reattempt build a few times in the case of failure (b/302558736) set +e for i in $(seq 1 5) do docker build \ --build-arg REQUIREMENTS_FILE=jax.requirements.txt \ --target=$target \ --cache-from "$AR_IMAGE" \ -t "$AR_IMAGE" . && break done
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 01 15:44:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/cmd/buildid/buildid.go
f.Close() if err != nil { log.Fatal(err) } // <= go 1.7 doesn't embed the contentID or actionID, so no slash is present if !strings.Contains(id, "/") { log.Fatalf("%s: build ID is a legacy format...binary too old for this tool", file) } newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash) if len(newID) != len(id) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jun 21 19:58:04 UTC 2024 - 1.7K bytes - Viewed (0) -
.github/workflows/build.yml
uses: gradle/actions/setup-gradle@v4 - name: Build okcurl run: ./gradlew okcurl:nativeImage - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - name: Build ConsoleLauncher run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage - name: Run Checks run: ./native-image-tests/build/graal/ConsoleLauncher testandroid:
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Aug 17 10:05:29 UTC 2024 - 17.2K bytes - Viewed (0) -
okhttp/build.gradle.kts
id("binary-compatibility-validator") } // Build & use okhttp3/internal/-InternalVersion.kt val copyKotlinTemplates = tasks.register<Copy>("copyKotlinTemplates") { from("src/main/kotlinTemplates") into("$buildDir/generated/sources/kotlinTemplates") expand("projectVersion" to project.version) filteringCharset = Charsets.UTF_8.toString() } // Build & use okhttp3/internal/idn/IdnaMappingTableInstance.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 5.6K bytes - Viewed (0) -
tensorflow/c/eager/BUILD
David Dunleavy <******@****.***> 1712878600 -0700
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 11 23:52:39 UTC 2024 - 33.3K bytes - Viewed (0) -
models.BUILD
package(default_visibility = ["//visibility:public"]) licenses(["notice"]) # Apache 2.0 filegroup( name = "model_files", srcs = glob( [ "**/*", ], exclude = [ "**/BUILD", "**/WORKSPACE", "**/LICENSE", "**/*.zip", ], ),
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jan 10 22:25:53 UTC 2017 - 328 bytes - Viewed (0) -
ci/official/requirements_updater/BUILD.bazel
load("@python//:defs.bzl", "compile_pip_requirements") load("@python_version_repo//:py_version.bzl", "REQUIREMENTS") compile_pip_requirements( name = "requirements", extra_args = [ "--allow-unsafe", "--build-isolation", "--rebuild", ], generate_hashes = True, requirements_in = "requirements.in", requirements_txt = REQUIREMENTS,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Jun 29 00:19:18 UTC 2024 - 1K bytes - Viewed (0) -
docs/debugging/build.sh
#!/bin/bash export CGO_ENABLED=0 for dir in docs/debugging/*/; do bin=$(basename ${dir}) go build -C ${dir} -o ${PWD}/${bin}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 133 bytes - Viewed (0)