- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 530 for build1 (0.06 sec)
-
docker-buildx.sh
echo "Testing builds for OS/Arch: ${SUPPORTED_OSARCH}" for each_osarch in ${SUPPORTED_OSARCH}; do _build "${each_osarch}" done sudo sysctl net.ipv6.conf.all.disable_ipv6=0 docker buildx build --push --no-cache \ --build-arg RELEASE="${release}" \ -t "registry.min.dev/community/minio:latest" \ -t "registry.min.dev/community/minio:${release}" \ --platform=linux/arm64,linux/amd64,linux/ppc64le \ -f Dockerfile .
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Oct 19 08:22:05 UTC 2025 - 1.9K bytes - Viewed (0) -
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 Dec 30 12:39:10 UTC 2025 - Last Modified: Wed Nov 12 19:21:56 UTC 2025 - 53.1K bytes - Viewed (0) -
.github/workflows/build.yml
with: report_paths: '**/build/test-results/*/TEST-*.xml' check_name: OpenJDK 11 Test Report - name: Publish Test Results uses: EnricoMi/publish-unit-test-result-action@v2 if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master' with: files: | **/build/test-results/*/TEST-*.xml testzulu11:Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Dec 12 04:49:37 UTC 2025 - 18.6K bytes - Viewed (0) -
build-logic-commons/build.gradle.kts
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 04:30:54 UTC 2025 - 800 bytes - Viewed (0) -
okhttp/build.gradle.kts
from("src/commonJvmAndroid/kotlinTemplates") into(kotlinTemplatesOutput) filteringCharset = Charsets.UTF_8.toString() expand( // Build & use okhttp3/internal/-InternalVersion.kt "projectVersion" to project.version, ) } // Build & use okhttp3/internal/idn/IdnaMappingTableInstance.kt val generateIdnaMappingTableConfiguration: Configuration by configurations.creating dependencies {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 12.3K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
val javaParserVersion = "3.18.0" // Note: this currently still contains 3/4 logic as we will temporarily have Groovy 3 for the build itself until we move to a Gradle built with Groovy 4 // It can be removed or changed to 4/5 logic (if necessary) at that point. val groovyVersion = GroovySystem.getVersion() val isGroovy4 = VersionNumber.parse(groovyVersion).major >= 4
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:16:30 UTC 2025 - 4.6K bytes - Viewed (0) -
.github/workflows/build-docs.yml
- uses: actions/cache@v4 with: key: mkdocs-cards-${{ matrix.lang }}-${{ github.ref }} path: docs/${{ matrix.lang }}/.cache - name: Build Docs run: python ./scripts/docs.py build-lang ${{ matrix.lang }} - uses: actions/upload-artifact@v5 with: name: docs-site-${{ matrix.lang }} path: ./site/** include-hidden-files: trueRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Dec 21 17:40:17 UTC 2025 - 3.3K bytes - Viewed (0) -
okhttp-testing-support/build.gradle.kts
classifier( when { OperatingSystem.current().isMacOsX -> "osx-aarch_64" OperatingSystem.current().isLinux -> "linux-x86_64" else -> "linux-x86_64" // Code that references Corretto will build but not run. } ) }) api(libs.hamcrestLibrary) api(libs.junit.jupiter.api) api(libs.junit.jupiter.params) api(libs.junit.pioneer) compileOnly(libs.robolectric.android)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 18:33:48 UTC 2025 - 1.2K bytes - Viewed (1) -
build.gradle.kts
if (project.name != "okhttp") { val testRuntimeOnly: Configuration by configurations.getting dependencies { // https://junit.org/junit5/docs/current/user-guide/#running-tests-build-gradle-bom testRuntimeOnly(rootProject.libs.junit.jupiter.engine) testRuntimeOnly(rootProject.libs.junit.vintage.engine) testRuntimeOnly(rootProject.libs.junit.platform.launcher) } }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 11.5K bytes - Viewed (1) -
build-logic/integration-testing/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") } description = "Provides plugins to create and configure integration, cross-version and distribution tests" gradlePlugin { plugins { register("androidStudioProvisioning") { id = "gradlebuild.android-studio-provisioning" implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin" } } plugins {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 27 06:24:17 UTC 2025 - 930 bytes - Viewed (0)