Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,064 for buildC (0.14 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. hack/get-build.sh

    # This script runs `curl` command to get the kubernetes build file.
    # Version number or publication is either a proper version number'
    # (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
    #  publication of the form <bucket>/<version> (e.g. "release/stable",'
    # "ci/latest-1").'
    
    # Usage `hack/get-build.sh [Version]`.
    # Example `hack/get-build.sh v1.16.4`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/base/flag.go

    	*f.value = v
    	if v != "" {
    		*f.explicit = true
    	}
    	return nil
    }
    
    // AddBuildFlagsNX adds the -n and -x build flags to the flag set.
    func AddBuildFlagsNX(flags *flag.FlagSet) {
    	flags.BoolVar(&cfg.BuildN, "n", false, "")
    	flags.BoolVar(&cfg.BuildX, "x", false, "")
    }
    
    // AddChdirFlag adds the -C flag to the flag set.
    func AddChdirFlag(flags *flag.FlagSet) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/cc/saved_model/experimental/public/BUILD

    wcn <******@****.***> 1668698241 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/experimental/tests/BUILD

    wcn <******@****.***> 1668698241 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 795 bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/image_format/BUILD

    A. Unique TensorFlower <******@****.***> 1703041221 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 03:07:44 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/BUILD

    A. Unique TensorFlower <******@****.***> 1686237059 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 745 bytes
    - Viewed (0)
Back to top