Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Response (0.12 sec)

  1. doc/next/6-stdlib/99-minor/net/http/66343.md

    [Error] now removes misleading response headers....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 49 bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/vcs.go

    			f := strings.Fields(line)
    			if len(f) != 5 || len(f[1]) != 40 || f[4] != "UTC" {
    				return nil, vcsErrorf("unexpected response from fossil info: %q", line)
    			}
    			t, err := time.Parse(time.DateTime, f[2]+" "+f[3])
    			if err != nil {
    				return nil, vcsErrorf("unexpected response from fossil info: %q", line)
    			}
    			hash := f[1]
    			version := rev
    			if strings.HasPrefix(hash, version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug_test.go

    		if cr == -1 {
    			response = strings.TrimSpace(response) // discards trailing newline
    			response = strings.Replace(response, "\n", "<BR>", -1)
    			return "$ Malformed response " + response
    		}
    		response = strings.TrimSpace(response[:cr])
    		return "$ " + response
    	}
    	if cr == -1 {
    		cr = len(response)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: reading http.*/mod/example.com/cmd/@v/v1.1.0-doesnotexist.info: 404 Not Found\n\tserver response: 404 page not found$'
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/cmd$'
    go install example.com/cmd/a@latest
    cmp go.mod go.mod.orig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: reading http.*/mod/example\.com/cmd/@v/v1.1.0-doesnotexist.info: 404 Not Found\n\tserver response: 404 page not found$'
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/cmd$'
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		cleanup()
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    	cmd.Args = []string{cmd.Args[0], "@" + tf.Name()}
    	return cleanup
    }
    
    func useResponseFile(path string, argLen int) bool {
    	// Unless the program uses objabi.Flagparse, which understands
    	// response files, don't use response files.
    	// TODO: Note that other toolchains like CC are missing here for now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    // Obviously args beginning with - are not safe (they look like flags).
    // Less obviously, args beginning with @ are not safe (they look like
    // GNU binutils flagfile specifiers, sometimes called "response files").
    // To be conservative, we reject almost any arg beginning with non-alphanumeric ASCII.
    // We accept leading . _ and / as likely in file system paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. doc/godebug.md

    The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid
    denial of service attacks, this setting and default was backported to Go
    1.19.13, Go 1.20.8, and Go 1.21.1.
    
    Go 1.22 made it an error for a request or response read by a net/http
    client or server to have an empty Content-Length header.
    This behavior is controlled by the `httplaxcontentlength` setting.
    
    Go 1.22 changed the behavior of ServeMux to accept extended
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top