Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,998 for Builds (0.27 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. src/crypto/internal/boring/build-boring.sh

    # Verbatim instructions from BoringCrypto build docs.
    printf "set(CMAKE_C_COMPILER \"clang\")\nset(CMAKE_CXX_COMPILER \"clang++\")\n" >${HOME}/toolchain
    cd boringssl
    mkdir build && cd build && cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=${HOME}/toolchain -DFIPS=1 -DCMAKE_BUILD_TYPE=Release ..
    ninja
    ./crypto/crypto_test
    cd ../..
    
    if [ "$(./boringssl/build/tool/bssl isfips)" != 1 ]; then
    	echo "NOT FIPS"
    	exit 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            outputContains("Hello from root build's plugin")
        }
    
        @ToBeFixedForConfigurationCache
        def "prefers a source mapping defined in the root build to one defined in a nested build when the nested build requests plugins"() {
            given:
            vcsMapping('org.test:first', first)
            // root build does not inject any plugins to second
            vcsMapping('org.test:second', second)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. src/runtime/internal/startlinetest/func_amd64.s

    // possible, but linkshared complicates things:
    //
    //  1. linkshared mode leaves the function around in the final output of
    //     non-test builds.
    //  2. Due of (1), the linker can't resolve the callerStartLine relocation
    //     (as runtime_test isn't built for non-test builds).
    //
    // Thus it is simpler to just put this in its own package, imported only by
    // runtime_test. We use ABIInternal as no ABI wrapper is generated for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 22 04:34:33 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/DefaultGradleBuild.java

            projects.add(project);
        }
    
        public Set<DefaultGradleBuild> getEditableBuilds() {
            return allBuilds;
        }
    
        public void addBuilds(Collection<DefaultGradleBuild> builds) {
            allBuilds.addAll(builds);
        }
    
        public Set<DefaultGradleBuild> getIncludedBuilds() {
            return includedBuilds;
        }
    
        public void addIncludedBuild(DefaultGradleBuild includedBuild) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/projectReports/groovy/api/build.gradle

    description = 'The shared API for the application'
    
    tasks.register('libs') {
        group = 'build'
        description = 'Builds the JAR'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 134 bytes
    - Viewed (0)
Back to top