Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 605 for buildA (0.47 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            buildSrcOps[0].displayName == "Build buildSrc"
            buildSrcOps[0].details.buildPath == ":buildB"
    
            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 3
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
    
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/internal/cfg/cfg.go

    	installedGOARCH string
    )
    
    // ToolExeSuffix returns the suffix for executables installed
    // in build.ToolDir.
    func ToolExeSuffix() string {
    	if installedGOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }
    
    // These are general "build flags" used by build and other commands.
    var (
    	BuildA             bool     // -a flag
    	BuildBuildmode     string   // -buildmode flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                assertConfirmationCount(build1)
                assertConfirmationCount(build2)
                assertConfirmationCount(build3)
            }
            replaceSocketReceiver { additionalRequests++ }
    
            then:
            waitCloseAndFinish(build1)
            build2.waitForFinish()
            build3.waitForFinish()
            assertConfirmationCount(build1)
            assertConfirmationCount(build2)
            assertConfirmationCount(build3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

            task build1(type:BuildSrcTask) {
                doLast {
                    ${server.callFromBuild('build1')}
                }
            }
    
            task build2(type:BuildSrcTask) {
                doLast {
                    ${server.callFromBuild('build2')}
                }
            }
            """
    
            server.expectConcurrent("build1", "build2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top