Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 3,080 for Builds (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    = The Base Plugin
    
    The Base Plugin provides some tasks and conventions that are common to most builds and adds a structure to the build that promotes consistency in how they are run. Its most significant contribution is a set of <<organizing_tasks.adoc#sec:lifecycle_tasks,_lifecycle_ tasks>> that act as an umbrella for the more specific tasks provided by other plugins and build authors.
    
    [[sec:base_plugin_usage]]
    == Usage
    
    
    .Applying the Base Plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. architecture/networking/controllers.md

    ```mermaid
    flowchart TD
        kcg["Kubernetes client-go"]
        ic["Istio kube.Client"]
        ikc["Istio kclient.Client"]
        ikrt["Istio krt.Collection"]
        ikrt--"Builds on"-->ikc--"Builds on"-->ic--"Builds on"-->kcg
    ```
    
    **`kube.Client`** is a fairly light wrapper around Kubernetes clients, but offers quite a few benefits.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

            """
            expect:
            execute(buildA, "resolve")
            assertTaskExecuted(":buildB", ":jar")
            assertTaskExecuted(":buildC", ":jar")
    
            outputContains("Transformed artifact: buildB-1.0.jar.xform (project :buildB)")
            outputContains("Transformed artifact: buildC-1.0.jar.xform (project :buildC)")
            output.count("Transforming") == 2
        }
    
        def "cross-build dependency with transform in another build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. Jenkinsfile

                   MAVEN_GOAL='deploy'
               }
            }
    
            stage('Build / Unit Test') {
                String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk)
                String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

            then:
            succeeds("foo")
            file('build/foo/foo').text == 'bar'
    
            when:
            file('foo').text = 'baz'
    
            then:
            buildTriggeredAndSucceeded()
            file('build/foo/foo').text == 'baz'
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can change cache configurations in between builds in a session"() {
            executer.requireOwnGradleUserHomeDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

     *
     *    //include some build arguments:
     *    build.withArguments("-i", "--project-dir", "some-project-dir");
     *
     *    //configure the standard input:
     *    build.setStandardInput(new ByteArrayInputStream("consume this!".getBytes()));
     *
     *    //in case you want the build to use java different than default:
     *    build.setJavaHome(new File("/path/to/java"));
     *
     *    //if your build needs crazy amounts of memory:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. docs/hotfixes.md

    #### Builds the hotfix binary and uploads to https;//dl.min.io
    
    ```
    λ CRED_DIR=/media/builder/minio make hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to docker.io/minio/minio
    
    ```
    λ CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

            result.groupedOutput.task(compileTaskPath('main')).assertOutputContains("Worker requested to be persistent, but the JVM argument '-javaagent:${file("javaagent/build/libs/javaagent.jar")}' may make the worker unreliable when reused across multiple builds. Worker will expire at the end of the build session.")
            assertTwoCompilerDaemonsAreRunning()
    
            when:
            executer.withWorkerDaemonsExpirationDisabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    * Gradle produces dependable results while benefiting from optimizations such as incremental builds, build caching, and parallel execution.
    
    Gradle, Inc. provides a free service called https://scans.gradle.com/[Build Scan®] that provides extensive information and insights about your builds.
    You can view scans to identify problems or share them for debugging help.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    [[sub:ephemeral-ci-cache]]
    == Dealing with ephemeral builds
    
    It's a common practice to run builds in ephemeral containers.
    A container is typically spawned to only execute a single build before it is destroyed.
    This can become a practical problem when a build depends on a lot of dependencies which each container has to re-download.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
Back to top