Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for backslashes (0.35 sec)

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

    	quote := byte(0)  // what is the quote character around the current string?
    
    	for _, c := range out {
    		if escaped {
    			if quote == '"' {
    				// “The <backslash> shall retain its special meaning as an escape
    				// character … only when followed by one of the following characters
    				// when considered special:”
    				switch c {
    				case '$', '`', '"', '\\', '\n':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // to the named output file or directory, instead of the default behavior described
    // in the last two paragraphs. If the named output is an existing directory or
    // ends with a slash or backslash, then any resulting executables
    // will be written to that directory.
    //
    // The build flags are shared by the build, clean, get, install, list, run,
    // and test commands:
    //
    //	-C dir
    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