Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,261 for buildC (0.08 sec)

  1. src/cmd/go/internal/work/build.go

    			strings.HasSuffix(cfg.BuildO, "/") ||
    			strings.HasSuffix(cfg.BuildO, string(os.PathSeparator)) {
    			if !explicitO {
    				base.Fatalf("go: build output %q already exists and is a directory", cfg.BuildO)
    			}
    			a := &Action{Mode: "go build"}
    			for _, p := range pkgs {
    				if p.Name != "main" {
    					continue
    				}
    
    				p.Target = filepath.Join(cfg.BuildO, p.DefaultExecName())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

            failure.assertThatCause(Matchers.containsText("Multiple build operations failed"));
        }
    
        // This is the current behavior:
        // We need to make sure that the build operation ids of nested builds started by a GradleBuild task do not overlap.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

                        commits: ['abcdef']
                    ]
                ],
                totalTime: [
                    [
                        label: 'build1',
                        data: [[0, 1]]
                    ],
                    [
                        label: 'build2',
                        data: [[0, 2]]
                    ]
                ]
            ]
        }
    
        def 'can calculate background color'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            def build1 = singleProjectBuild("build1") {
                buildFile << "task foo1"
            }
            def build2 = singleProjectBuild("build2") {
                buildFile << "task foo2"
            }
    
            when:
            def allProgress = new CopyOnWriteArrayList<String>()
    
            concurrent.start {
                def connector = toolingApi.connector(build1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/buildid.go

    					}
    
    					// Poison a.Target to catch uses later in the build.
    					a.Target = "DO NOT USE - main build pseudo-cache Target"
    					a.built = "DO NOT USE - main build pseudo-cache built"
    					if a.json != nil {
    						a.json.BuildID = a.buildID
    					}
    					return true
    				}
    				// Otherwise restore old build ID for main build.
    				a.buildID = oldBuildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

        }
    
        PerformanceTestHistory mockCrossBuildHistory() {
            BuildDisplayInfo info1 = buildDisplayInfo('build1')
            CrossBuildPerformanceResults result1  = crossBuildResults(startTime: 100)
            result1.buildResult(info1).addAll(measuredOperations([1]))
    
            BuildDisplayInfo info2 = buildDisplayInfo('build2')
            CrossBuildPerformanceResults result2  = crossBuildResults(startTime: 200)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

        }
    
        def "includes build identifier in dependency report with #display"() {
            dependency "org.test:buildB:1.0"
    
            createDirs("buildB", "buildB/buildSrc", "buildB/buildSrc/b1", "buildB/buildSrc/b2")
            buildB.file("buildSrc/settings.gradle") << """
                $settings
                include 'b1', 'b2'
            """
            buildB.file("buildSrc/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB.file("foo/.gitkeepdir").touch()
            buildB.file("bar/.gitkeepdir").touch()
            buildB.settingsFile << """
                rootProject.name = 'B'
                include 'foo', 'bar'
            """
            buildB.buildFile << """
                allprojects {
                    apply plugin: 'java'
                    group = 'org.test'
                    version = '1.0'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildLookupIntegrationTest.groovy

                rootProject.name = 'buildB'
            """
            repo.file("build.gradle") << """
                apply plugin: 'java'
                group = 'org.test'
            """
            repo.commit("version 2")
            repo.createLightWeightTag("2.0")
        }
    
        @ToBeFixedForConfigurationCache
        def "source dependency builds are not visible to main build"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top