Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,188 for buildC (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/internal/work/gc.go

    	}
    	h := sha1.New()
    	buildID := a.buildID
    	if a.Mode == "link" {
    		// For linking, use the main package's build ID instead of
    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. subprojects/core/build.gradle.kts

        api(project(":base-services"))
        api(project(":base-services-groovy"))
        api(project(":build-cache"))
        api(project(":build-cache-base"))
        api(project(":build-cache-local"))
        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":cli"))
        api(project(":core-api"))
        api(project(":declarative-dsl-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K 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. src/cmd/go/internal/run/run.go

    used by debuggers, to reduce build time. To include debugger information in
    the binary, use 'go build'.
    
    The exit status of Run is not the exit status of the compiled binary.
    
    For more about build flags, see 'go help build'.
    For more about specifying packages, see 'go help packages'.
    
    See also: go build.
    	`,
    }
    
    func init() {
    	CmdRun.Run = runRun // break init loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/builder.go

    	b.logger = &AuthzLogger{}
    	defer b.logger.Report()
    	if b.option.IsCustomBuilder {
    		if configs := b.build(b.customPolicies, rbacpb.RBAC_DENY, true); configs != nil {
    			b.logger.AppendDebugf("built %d TCP filters for CUSTOM action", len(configs.tcp))
    			return configs.tcp
    		}
    		return nil
    	}
    
    	var filters []*listener.Filter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top