- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 2,076 for builds (0.08 sec)
-
native-image-tests/src/main/kotlin/okhttp3/RunTests.kt
val config = LauncherConfig.builder() .enableTestExecutionListenerAutoRegistration(false) .enableTestEngineAutoRegistration(false) .enablePostDiscoveryFilterAutoRegistration(false) .addTestEngines(jupiterTestEngine) .addTestExecutionListeners(DotListener, summaryListener, treeListener) .build() val launcher: Launcher = LauncherFactory.create(config)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.3K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/build.gradle.kts
plugins { `kotlin-dsl` } group = "gradlebuild" description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds" dependencies { compileOnly("com.gradle:develocity-gradle-plugin") api(platform(projects.buildPlatform)) implementation(projects.basics) implementation(projects.moduleIdentity) implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.0.1")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 13:02:17 UTC 2024 - 843 bytes - Viewed (0) -
architecture/platforms.md
### JVM platform This is a platform that builds on the core and software platforms to add support for developing software that runs on the JVM. This includes software that is implemented using Java, Kotlin or some other JVM language. This platform provides specific support for Java, Groovy and Scala, and includes the foojay toolchain plugin. ### Extensibility platform
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 5.4K 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) -
ci/official/utilities/setup_macos.sh
fi # TFCI Mac VM images do not have twine installed by default so we need to # install it manually. We use Twine in nightly builds to upload Python packages # to PyPI. if [[ "$TFCI_MACOS_TWINE_INSTALL_ENABLE" == 1 ]]; then pip install twine==3.6.0 fi # Scheduled nightly and release builds upload build artifacts (Pip packages, # Libtensorflow archives) to GCS buckets. TFCI Mac VMs need to authenticate as
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0) -
build-logic/build.gradle.kts
if (jvmArgs.size > 1) { throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " + "which may cause two daemons to be spawned on CI and in IDEA. " + "Use the same org.gradle.jvmargs for both builds.") } } } fun readProperties(propertiesFile: File) = java.util.Properties().apply {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jan 24 02:52:56 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuilder.java
*/ package org.apache.maven.settings.building; /** * Builds the effective settings from a user settings file, a project settings file * and/or a global settings file. * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.SettingsBuilder} instead */ @Deprecated(since = "4.0.0") public interface SettingsBuilder { /** * Builds the effective settings of the specified settings files. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuilder.java
*/ package org.apache.maven.toolchain.building; /** * Builds the effective toolchains from a user toolchains file and/or a global toolchains file. * * @since 3.3.0 * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.ToolchainsBuilder} instead */ @Deprecated(since = "4.0.0") public interface ToolchainsBuilder { /** * Builds the effective toolchains of the specified toolchains files. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
disabled-Jenkinsfile.s390x
checkout scm } def WORK_DIR=pwd() def MAVEN_GOAL='verify' stage('Build / Unit Test') { String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk) String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn) try { withEnv(["JAVA_HOME=${ tool "$jdkName" }",
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 7.7K bytes - Viewed (0) -
disabled-Jenkinsfile
MAVEN_GOAL='deploy' } } stage('Build / Unit Test') { String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk) String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn) try { withEnv(["JAVA_HOME=${ tool "$jdkName" }",
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 8.4K bytes - Viewed (0)