Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for today (0.14 sec)

  1. src/cmd/cgo/doc.go

    cmd/link Command Line Interface
    
    The go command and any other Go-aware build systems invoke cmd/link
    to link a collection of packages into a single binary. By default, cmd/link will
    present the same interface it does today:
    
    	cmd/link main.a
    
    produces a file named a.out, even if cmd/link does so by invoking the host
    linker in external linking mode.
    
    By default, cmd/link will decide the linking mode as follows: if the only
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/godefs.go

    	"&\n", "& ",
    	"|\n", "| ",
    	"^\n", "^ ",
    	"<\n", "< ",
    	">\n", "> ",
    	"=\n", "= ",
    	"!\n", "! ", // not possible in gofmt today
    	"(\n", "(",
    	"[\n", "[", // not possible in gofmt today
    	"{\n", "{",
    	",\n", ",",
    	".\n", ". ",
    	":\n", ": ", // not possible in gofmt today
    
    	"\n", ";",
    )
    
    // gofmtLine returns the gofmt-formatted string for an AST node,
    // ensuring that it is on a single line.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 08 14:33:35 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/endtoend_test.go

    			return false
    		}
    	}
    	return true
    }
    
    // It would be nice if the error messages always began with
    // the standard file:line: prefix,
    // but that's not where we are today.
    // It might be at the beginning but it might be in the middle of the printed instruction.
    var fileLineRE = regexp.MustCompile(`(?:^|\()(testdata[/\\][\da-z]+\.s:\d+)(?:$|\)|:)`)
    
    // Same as in test/run.go
    var (
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
Back to top