Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,998 for Builds (0.15 sec)

  1. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuilder.java

     * under the License.
     */
    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.
     *
     */
    public interface SettingsBuilder {
    
        /**
         * Builds the effective settings of the specified settings files.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    This will create all the Gradle build files you need, even for <<migmvn:multimodule_builds,multi-module builds>>.
    For simpler Maven projects, the Gradle build will be ready to run!
    +
     . link:https://scans.gradle.com[Create a build scan for the Gradle build].
    +
    A build scan will make it easier to visualize what's happening in the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

            failure.assertThatCause(Matchers.containsText("Multiple build operations failed"));
        }
    
        // This is the current behavior:
        // We need to make sure that the build operation ids of nested builds started by a GradleBuild task do not overlap.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/UsageDescriber.java

        private static final String IS_DEPRECATED = "(but this behavior is marked deprecated)";
    
        private UsageDescriber() { /* not instantiable */ }
    
        /**
         * Builds a human-readable description of the usage allowed by the given role.
         *
         * @param role the role to describe
         * @return a human-readable description of the role's allowed usage
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:04:58 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

         *
         * <p>If the target Gradle version is &gt;=6.8 then you can execute tasks from included builds. You can target tasks from included builds by specifying the task identity path (i.e. {@code
         * ':included-build-name:subproject-name:taskName'}).</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    By watching the file system, Gradle keeps the VFS current between builds.
    
    == Enable
    
    Gradle enables file system watching by default for supported operating systems since Gradle 7.
    
    Run the build with the '--watch-fs' flag to force file system watching for a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

        default DependencyResolverResult collect(@Nonnull Session session, @Nonnull DependencyCoordinate root) {
            return collect(DependencyResolverRequest.build(session, DependencyResolverRequest.RequestType.COLLECT, root));
        }
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/build.sh

      # 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 "$IMAGE" \
        -t "$IMAGE" -t "$AR_IMAGE" . && break
      done
      final=$?
      if [ $final -ne 0 ]; then
        exit $final
      fi
      set -e
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIntegrationTest.groovy

    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.build.BuildTestFile
    
    class CompositeBuildBuildSrcIntegrationTest extends AbstractIntegrationSpec {
    
        def "included and composing builds can contain buildSrc builds"() {
            def outerBuild = new BuildTestFile(testDirectory, "root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

        /**
         * Called once per build invocation on a build, to register any build scoped services to use during that build invocation. These services are closed at the end of the build invocation.
         *
         * <p>Global, user home, build session and build tree services are visible to the build scope services, but not vice versa.</p>
         *
         * @see Scope.Build
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top