Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cgolife (0.13 sec)

  1. src/cmd/go/internal/work/shell.go

    	// Replace *[100]_Ctype_foo with *[100]C.foo.
    	// If we're using -x, assume we're debugging and want the full dump, so disable the rewrite.
    	if !cfg.BuildX && cgoLine.MatchString(out) {
    		out = cgoLine.ReplaceAllString(out, "")
    		out = cgoTypeSigRe.ReplaceAllString(out, "C.")
    	}
    
    	// Usually desc is already p.Desc(), but if not, signal cmdError.Error to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    	$GOARCH
    		The execution architecture (arm, amd64, etc.)
    	$GOOS
    		The execution operating system (linux, windows, etc.)
    	$GOFILE
    		The base name of the file.
    	$GOLINE
    		The line number of the directive in the source file.
    	$GOPACKAGE
    		The name of the package of the file containing the directive.
    	$GOROOT
    		The GOROOT directory for the 'go' command that invoked the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	$GOARCH
    //		The execution architecture (arm, amd64, etc.)
    //	$GOOS
    //		The execution operating system (linux, windows, etc.)
    //	$GOFILE
    //		The base name of the file.
    //	$GOLINE
    //		The line number of the directive in the source file.
    //	$GOPACKAGE
    //		The name of the package of the file containing the directive.
    //	$GOROOT
    //		The GOROOT directory for the 'go' command that invoked the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top