Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pipe (0.81 sec)

  1. src/cmd/go/alldocs.go

    //
    //	-buildmode=exe
    //		Build the listed main packages and everything they import into
    //		executables. Packages not named main are ignored.
    //
    //	-buildmode=pie
    //		Build the listed main packages and everything they import into
    //		position independent executables (PIE). Packages not named
    //		main are ignored.
    //
    //	-buildmode=plugin
    //		Build the listed main packages, plus all packages that they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	}
    
    	// Decide whether we are building a PIE,
    	// bearing in mind that some systems default to PIE.
    	isPIE := false
    	if cfg.BuildBuildmode == "pie" {
    		isPIE = true
    	} else if cfg.BuildBuildmode == "default" && platform.DefaultPIE(cfg.BuildContext.GOOS, cfg.BuildContext.GOARCH, cfg.BuildRace) {
    		isPIE = true
    	}
    	// If we are building a PIE, and we are on a system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre class="grammar">
    "var" IdentifierList = ExpressionList .
    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    // gccNoPie returns the flag to use to request non-PIE. On systems
    // with PIE (position independent executables) enabled by default,
    // -no-pie must be passed when doing a partial link with -Wl,-r.
    // But -no-pie is not supported by all compilers, and clang spells it -nopie.
    func (b *Builder) gccNoPie(linker []string) string {
    	if b.gccSupportsFlag(linker, "-no-pie") {
    		return "-no-pie"
    	}
    	if b.gccSupportsFlag(linker, "-nopie") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top