Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,080 for Builds (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractCommandLineOrderTaskIntegrationTest.groovy

                projects.values().each { it.writeFiles() }
            }
        }
    
        class ProjectFixture {
            final BuildFixture build
            final String path
            final Map<String, TaskFixture> tasks = [:]
    
            ProjectFixture(BuildFixture build, String path) {
                this.build = build
                this.path = path
            }
    
            TaskFixture task(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. build-logic-commons/build.gradle.kts

    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 14:22:22 UTC 2021
    - 183 bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCleanupIntegrationTest.groovy

        def "stale outputs are removed from composite builds"() {
            given:
            dependency("org.test:buildB:1.0")
    
            def buildB = singleProjectBuild("buildB") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
            includedBuilds << buildB
    
            def staleFiles = [
                file("buildA/build/classes/java/main/stale"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:26 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top