Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,951 for Builds (0.15 sec)

  1. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuilder.java

     * under the License.
     */
    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
     */
    public interface ToolchainsBuilder {
    
        /**
         * Builds the effective toolchains of the specified toolchains files.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultIvyModuleResolveMetadataTest.groovy

            compile.dependencies.is(compile.dependencies)
        }
    
        def "builds and caches the configuration meta-data from the module descriptor"() {
            when:
            configuration("conf")
    
            then:
            metadata.getConfiguration("conf").transitive
            metadata.getConfiguration("conf").visible
        }
    
        def "builds and caches hierarchy for a configuration"() {
            given:
            configuration("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    * Share build configuration logic between subprojects using convention plugins in `buildSrc`
    * Run similar named tasks in all subprojects
    * Run a task in a specific subproject
    * Build, bundle and run the application
    
    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  4. architecture/standards/0004-use-a-platform-architecture.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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    [[sec:build_cache_enable]]
    == Enable the Build Cache
    
    By default, the build cache is not enabled. You can enable the build cache in a couple of ways:
    
    Run with `--build-cache` on the command-line::
    Gradle will use the build cache for this build only.
    Put `org.gradle.caching=true` in your `gradle.properties`::
    Gradle will try to reuse outputs from previous builds for all builds, unless explicitly disabled with `--no-build-cache`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildParallelIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "builds IDE metadata artifacts in parallel"() {
            given:
            server.start()
            buildTestFixture.withBuildInSubDir()
            def buildA = singleProjectBuild("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    apply plugin: 'idea'
                """
            }
    
            def included = ['buildB', 'buildC', 'buildD']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Shared build caches can decrease build times for both CI and developer builds.
    
    For more information about the build cache, check out the
    <<build_cache_use_cases.adoc#use_cases_cache,build cache documentation>>.
    
    === Visualize the build cache with build scans
    
    Build scans can help you investigate build cache effectiveness.
    In the performance screen, the _"Build cache"_ tab shows you statistics about:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. .teamcity/README.md

    (we highly recommend to name this branch without prefix and hyphen (`-`) because it's used to generate build type ID) and want to
    test these changes without affecting `master`/`release` pipeline. Here are the instructions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    image::gradle-basic-3.png[]
    
    The primary purpose of the _settings file_ is to add subprojects to your build.
    
    Gradle supports single and multi-project builds.
    
    - For single-project builds, the settings file is optional.
    - For multi-project builds, the settings file is mandatory and declares all subprojects.
    
    [[sec:settings_file_script]]
    == Settings script
    
    The settings file is a script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == Suggestions for authoring your build
    
    [[custom_actions]]
    === Review usages of `doFirst` and `doLast`
    
    Using `doFirst` and `doLast` from a build script on a cacheable task ties you to build script changes since the implementation of the closure comes from the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top