Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,080 for Builds (0.14 sec)

  1. Makefile

    	@echo "Verify resolving inconsistent versions build with race"
    	@(env bash $(PWD)/buildscripts/resolve-right-versions.sh)
    
    build-debugging:
    	@(env bash $(PWD)/docs/debugging/build.sh)
    
    build: checks build-debugging ## builds minio to $(PWD)
    	@echo "Building minio binary to './minio'"
    	@CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
    
    hotfix-vars:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    TIP: To understand the Daemon's impact on your builds, you can profile your build with `--profile`.
    
    In between builds, the Daemon waits idly for the next build.
    As a result, your machine only loads Gradle into memory once for multiple builds instead of once per build.
    This is a significant performance optimization.
    
    === Runtime Code Optimizations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    * The build's output;
    * The build's logging (i.e. console output);
    * The set of tasks executed by the build and their results (e.g. FAILED, UP-TO-DATE etc.).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

            when:
            execute(buildA, "tasks", ["--include-build", "../pluginBuild"])
    
            then:
            executed ":pluginBuild:jar"
            outputContains("taskFromPluginBuild")
        }
    
        def "does not substitute plugin from same build into root build"() {
            disableProblemsApiCheck()
            buildA.settingsFile << """
                include "a", "b"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        phaseHasMoreProgress(startEvent);
                    } else if (startEvent.getBuildOperationCategory().isTopLevelWorkItem() && currentPhase == Phase.Executing) {
                        // Any work execution happening in nested or buildSrc builds before the root build has started executing work is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java

         * @throws IllegalArgumentException if an argument is {@code null} or invalid
         * @see #build(ToolchainsBuilderRequest)
         */
        @Nonnull
        default ToolchainsBuilderResult build(
                @Nonnull Session session, @Nonnull Source globalToolchainsSource, @Nonnull Source userToolchainsSource) {
            return build(ToolchainsBuilderRequest.build(session, globalToolchainsSource, userToolchainsSource));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r82/CompositeBuildCrossVersionSpec.groovy

            includedBuild("b2")
    
            when:
            def model = withConnection {
                it.getModel(GradleBuild)
            }
    
            then:
            def builds = model.includedBuilds
            builds.size() == 2
            builds.first().projects.first().buildTreePath == ":b1"
            model.projects.first().buildTreePath == ":"
        }
    
        @TargetGradleVersion('>=8.6')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:21:57 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top