Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  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/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