Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,956 for Builds (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            nestedBuildSrc.editableBuilds.empty
        }
    
        @TargetGradleVersion(">4.9 <7.1")
        // versions 4.9 and older do not like nested included builds or nested buildSrc builds
        def "older versions do not include buildSrc builds in model"() {
            buildsWithBuildSrc()
    
            given:
            def model = withConnection {
                it.getModel(GradleBuild)
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         */
        @Nonnull
        SettingsBuilderResult build(@Nonnull SettingsBuilderRequest request);
    
        /**
         * Builds the effective settings of the specified settings sources.
         *
         * @return the result of the settings building, never {@code null}
         * @throws SettingsBuilderException if the effective settings could not be built
         */
        @Nonnull
        default SettingsBuilderResult build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                            doLast {
                                def projects = []
                                def builds = []
                                registry.visitBuilds { b ->
                                    builds.add(b.identityPath.path)
                                    if (b.projectsLoaded) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    While `.gradle` is usually checked into source control, the `build` directory contains the output of your builds as well as transient files Gradle uses to support features like incremental builds.
    
    The anatomy of a typical project root directory looks as follows:
    
    [listing,subs=+macros]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

            given:
            compositeWithRootInvolvingIncludeCycle()
    
            when:
            def eclipseProjects = withConnection { action(new FetchEclipseProjects()).run() }
    
            then:
            eclipseProjects.collect { it.name } == ['module-root', 'module-a']
        }
    
        def "Eclipse model builder can handle cycles between included builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. 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: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. testing/performance/README.md

    ### Performance test builds
    
    The build templates live in [`src/templates`](src/templates). Each template build is parameterized to some degree. For example, it is possible to define how many projects, source
    or test files to generate for a performance test build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/settings.gradle

    // This is an empty umbrella build including all the component builds.
    // This build is not necessarily needed. The component builds work independently.
    
    includeBuild('platforms')
    includeBuild('build-logic')
    
    includeBuild('aggregation')
    
    includeBuild('user-feature')
    includeBuild('admin-feature')
    
    includeBuild('server-application')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/settings.gradle.kts

    // This is an empty umbrella build including all the component builds.
    // This build is not necessarily needed. The component builds work independently.
    
    includeBuild("platforms")
    includeBuild("build-logic")
    
    includeBuild("aggregation")
    
    includeBuild("user-feature")
    includeBuild("admin-feature")
    
    includeBuild("server-application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

            /**
             * The path of the build configuration that contains these projects.
             * This will be ':' for top-level builds. Nested builds will have a sub-path.
             *
             * See {@code org.gradle.api.internal.GradleInternal#getIdentityPath()}.
             */
            String getBuildPath();
    
            /**
             * A description of the root Project for this build.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top