Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,327 for buildC (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/TextResourceScriptSourceTest.java

            ScriptSource source1 = forFile(new File(testDir, "build.gradle"));
            ScriptSource source2 = forFile(new File(testDir, "subdir/build.gradle"));
            assertThat(source1.getClassName(), not(equalTo(source2.getClassName())));
    
            ScriptSource source3 = forFile(new File(testDir, "build.gradle"));
            assertThat(source1.getClassName(), equalTo(source3.getClassName()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:04:05 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/cc/saved_model/BUILD

            "//tensorflow/tools/proto_splitter:merge",
        ]) + if_not_mobile([
            # TODO(b/111634734): :lib and :protos_all contain dependencies that
            # cannot be built on mobile platforms. Instead, include the appropriate
            # tf_lib depending on the build platform.
            "@com_google_absl//absl/memory:memory",
            "//tensorflow/core:lib",
            "//tensorflow/core/util/tensor_bundle:byteswaptensor",
        ]),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top