Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,327 for buildC (0.29 sec)

  1. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/basic")
                description = "Defining and using a composite build"
                category = "Build organization"
            }
    
            compositeBuildsDeclaredSubstitutions {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/declared-substitution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

        doLast {
            fileCollection.files
        }
    }
    """
            // Ensure build scripts compiled
            run("help")
    
            when:
            def build1 = executer.withTasks("redThings").withArgument("-Dcrash=true").start()
            build1.waitForFailure()
    
            run("redThings")
    
            then:
            output.count("Transforming") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/clean/clean.go

    				}
    			}
    			continue
    		}
    
    		if cfg.BuildN {
    			continue
    		}
    
    		if cleanFile[name] || cleanExt[filepath.Ext(name)] || toRemove[name] {
    			removeFile(filepath.Join(p.Dir, name))
    		}
    	}
    
    	if cleanI && p.Target != "" {
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "rm -f %s", p.Target)
    		}
    		if !cfg.BuildN {
    			removeFile(p.Target)
    		}
    	}
    
    	if cleanR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. hack/get-build.sh

    # This script runs `curl` command to get the kubernetes build file.
    # Version number or publication is either a proper version number'
    # (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
    #  publication of the form <bucket>/<version> (e.g. "release/stable",'
    # "ci/latest-1").'
    
    # Usage `hack/get-build.sh [Version]`.
    # Example `hack/get-build.sh v1.16.4`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	// but it was built using the newly built compiler instead of the Go bootstrap compiler,
    	// so it should at the least run faster. Also, toolchain1 had no build IDs
    	// in the binaries, while toolchain2 does. In non-release builds, the
    	// toolchain's build IDs feed into constructing the build IDs of built targets,
    	// so in non-release builds, everything now looks out-of-date due to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            ProjectConnection connection2 = connector.connect()
    
            def build = connection1.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
    
            def build2 = connection2.newBuild()
            build2.forTasks('hang')
            build2.run(resultHandler)
    
            sync.waitForAllPendingCalls(resultHandler)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gccgo.go

    			return "", err
    		}
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "ar d %s _cgo_flags", newArchive)
    			if cfg.BuildN {
    				// TODO(rsc): We could do better about showing the right _cgo_flags even in -n mode.
    				// Either the archive is already built and we can read them out,
    				// or we're printing commands to build the archive and can
    				// forward the _cgo_flags directly to this step.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    == Step 1. Understanding Incremental Builds
    It's important to know that Gradle optimizes your build in a variety of ways.
    One such optimization is called _incremental builds_.
    
    An _incremental build_ is a build that avoids running tasks whose inputs did not change since the previous build, making the execution of such tasks unnecessary.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top