Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,080 for Builds (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tools/build-kind-image.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script builds a multi-arch kind node image
    # Largely copied from https://github.com/kubernetes-sigs/kind/blob/2a1e9df91fd22d6ae5b91648b6c1a606ab4cdf30/hack/release/build/push-node.sh
    # Example usage: `tools/build-kind-image.sh ~/go/src/k8s.io/kubernetes gcr.io/istio-testing/kind-node:v1.23.4`
    
    set -uex
    
    kdir="${1:?Kubernetes directory}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_concurrent.txt

    env GO111MODULE=on
    
    # Concurrent builds should succeed, even if they need to download modules.
    go get ./x ./y
    go build ./x &
    go build ./y
    wait
    
    # Concurrent builds should update go.sum to the union of the hashes for the
    # modules they read.
    cmp go.sum go.sum.want
    
    -- go.mod --
    module golang.org/issue/26794
    
    require (
    	golang.org/x/text v0.3.0
    	rsc.io/sampler v1.0.0
    )
    -- x/x.go --
    package x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 800 bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsNestingIntegrationTest.groovy

            build2.settingsFile.setText("""
                pluginManagement {
                    includeBuild("../${build1.buildName}")
                }
                plugins {
                    id("${build1.settingsPluginId}")
                }
                rootProject.name = "${build2.buildName}"
            """)
    
            then:
            succeeds()
            build1.assertSettingsPluginApplied()
            build2.assertSettingsPluginApplied()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 11:18:10 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java

         * @throws ModelBuildingException If the effective model could not be built.
         */
        ModelBuildingResult build(ModelBuildingRequest request) throws ModelBuildingException;
    
        /**
         * Builds the effective model by completing the specified interim result which was produced by a previous call to
         * {@link #build(ModelBuildingRequest)} with {@link ModelBuildingRequest#isTwoPhaseBuilding()} being {@code true}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:27:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top