Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for buildC (0.32 sec)

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

            when:
            execute(buildA, "tasks", ["--include-build", "../pluginBuild"])
    
            then:
            executed ":pluginBuild:jar"
            outputContains("taskFromPluginBuild")
        }
    
        def "does not substitute plugin from same build into root build"() {
            disableProblemsApiCheck()
            buildA.settingsFile << """
                include "a", "b"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            when:
            def build = executer.withTasks("help").withArguments("--info").start()
    
            then:
            build.waitForFinish()
    
            and:
            daemons.daemons.size() == 2
    
            and:
            !build.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
        }
    
        def "starts a new daemon when daemons with canceled builds do not become available"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top