Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 293 for buildC (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            def moduleA = allProjects.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof  IdeaModuleDependency
            }
            moduleA.dependencies.collect { it.targetModuleName } == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            allProjects.getIdeaProject('buildB').modules.collect { it.name } == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

            def workspace = eclipseWorkspace([project("buildA", buildA),
                                              project("buildB", buildB),
                                              project("buildC", buildC, false),
                                              project("b1", buildB.file("b1")),
                                              project("b2", buildB.file("b2"))])
    
            when:
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            buildB.rootProject.name == "buildB"
            buildB.projects.size() == 4
            buildB.includedBuilds.size() == 1
    
            def buildC = buildB.includedBuilds[0]
            buildC.buildIdentifier.rootDir == buildCDir
            buildC.rootProject.name == "buildC"
            buildC.projects.size() == 1
            buildC.includedBuilds.empty
        }
    
        @TargetGradleVersion(">=4.10")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. architecture/build-state-model.md

    ### Build tree state
    
    "Build tree" is another name for the build definition.
    The "build tree state" holds the state for the entire build definition for a single build execution within a session.
    
    The build tree state is managed by the `BuildTreeState` class.
    An instance is created at the start of a build execution and discarded at the end of the execution.
    
    ### Build state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

    /**
     * Dependency substitution is performed for models in a composite build
     */
    @TargetGradleVersion(">=3.1")
    class AdHocCompositeDependencySubstitutionCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        TestFile buildA
        TestFile buildB
    
        def setup() {
    
            buildA = singleProjectBuildInRootFolder("buildA") {
                buildFile << """
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/build.sh

      # command to reattempt build a few times in the case of failure (b/302558736)
      set +e
      for i in $(seq 1 5)
      do
        docker build \
        --build-arg REQUIREMENTS_FILE=jax.requirements.txt \
        --target=$target \
        --cache-from "$IMAGE" \
        -t "$IMAGE" -t "$AR_IMAGE" . && break
      done
      final=$?
      if [ $final -ne 0 ]; then
        exit $final
      fi
      set -e
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/base/base.go

    // If the command fails, Run reports the error using Errorf.
    func Run(cmdargs ...any) {
    	cmdline := str.StringList(cmdargs...)
    	if cfg.BuildN || cfg.BuildX {
    		fmt.Printf("%s\n", strings.Join(cmdline, " "))
    		if cfg.BuildN {
    			return
    		}
    	}
    
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    	if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

    A. Unique TensorFlower <******@****.***> 1713593984 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

    A. Unique TensorFlower <******@****.***> 1718231025 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top