Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 341 for buildC (0.12 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/build.gradle

    Laura Kassovic <******@****.***> 1714081789 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 227 bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		p1 := a1.Package
    		if p1 != nil {
    			if a1.built != "" || a1.buildID != "" {
    				buildID := a1.buildID
    				if buildID == "" {
    					buildID = b.buildID(a1.built)
    				}
    				fmt.Fprintf(h, "packagefile %s=%s\n", p1.ImportPath, contentID(buildID))
    			}
    			// Because we put package main's full action ID into the binary's build ID,
    			// we must also put the full action ID into the binary's action ID hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Build.java

    import org.gradle.launcher.exec.BuildActionParameters;
    
    import java.util.UUID;
    
    public class Build extends Command {
        private final BuildAction action;
        private final GradleLauncherMetaData buildClientMetaData;
        private final long startTime;
        private final boolean interactive;
        private final BuildActionParameters parameters;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

    Laura Kassovic <******@****.***> 1713932349 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    // end::object-factory-inject[]
    
    // tag::project-layout[]
    tasks.register('showLayout') {
        doLast {
            def layout = project.layout
            println "Project Directory: ${layout.projectDirectory}"
            println "Build Directory: ${layout.buildDirectory.get()}"
        }
    }
    // end::project-layout[]
    
    // tag::project-layout-inject[]
    abstract class MyProjectLayoutTask extends DefaultTask {
        private ProjectLayout projectLayout
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

    Laura Kassovic <******@****.***> 1713377655 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/daemon-jvm/customized-task/groovy/build.gradle

    Louis Jacomet <******@****.***> 1717171633 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 17:16:48 UTC 2024
    - 149 bytes
    - Viewed (0)
  9. docs/debugging/build.sh

    #!/bin/bash
    
    export CGO_ENABLED=0
    for dir in docs/debugging/*/; do
    	bin=$(basename ${dir})
    	go build -C ${dir} -o ${PWD}/${bin}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 133 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/groovy/producer/build.gradle

    Bálint Hegyi <******@****.***> 1716541782 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top