Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Response (0.59 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    }
    
    func statusCodeError(resp *http.Response) error {
    	if resp.Header.Get("X-Go-Pprof") != "" && strings.Contains(resp.Header.Get("Content-Type"), "text/plain") {
    		// error is from pprof endpoint
    		if body, err := io.ReadAll(resp.Body); err == nil {
    			return fmt.Errorf("server response: %s - %s", resp.Status, body)
    		}
    	}
    	return fmt.Errorf("server response: %s", resp.Status)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    }
    
    func statusCodeError(resp *http.Response) error {
    	if resp.Header.Get("X-Go-Pprof") != "" && strings.Contains(resp.Header.Get("Content-Type"), "text/plain") {
    		// error is from pprof endpoint
    		if body, err := io.ReadAll(resp.Body); err == nil {
    			return fmt.Errorf("server response: %s - %s", resp.Status, body)
    		}
    	}
    	return fmt.Errorf("server response: %s", resp.Status)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// and there is no need to parse the path in any way.
    	// It is the implementation's responsibility to turn that path into a full URL
    	// and make the HTTP request. ReadRemote should return an error for
    	// any non-200 HTTP response status.
    	ReadRemote(path string) ([]byte, error)
    
    	// ReadConfig reads and returns the content of the named configuration file.
    	// There are only a fixed set of configuration files.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cache/prog.go

    	BodySize int64 `json:",omitempty"`
    }
    
    // ProgResponse is the JSON response from the child process to cmd/go.
    //
    // With the exception of the first protocol message that the child writes to its
    // stdout with ID==0 and KnownCommands populated, these are only sent in
    // response to a ProgRequest from cmd/go.
    //
    // ProgResponses can be sent in any order. The ID must match the request they're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/proxy.go

    	if err != nil {
    		return nil, p.versionError(rev, err)
    	}
    	info := new(RevInfo)
    	if err := json.Unmarshal(data, info); err != nil {
    		return nil, p.versionError(rev, fmt.Errorf("invalid response from proxy %q: %w", p.redactedBase, err))
    	}
    	if info.Version != rev && rev == module.CanonicalVersion(rev) && module.Check(p.path, rev) == nil {
    		// If we request a correct, appropriate version for the module path, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_messages_test.go

    	m.signature = randomBytes(rand.Intn(15)+1, rand)
    	return reflect.ValueOf(m)
    }
    
    func (*certificateStatusMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &certificateStatusMsg{}
    	m.response = randomBytes(rand.Intn(10)+1, rand)
    	return reflect.ValueOf(m)
    }
    
    func (*clientKeyExchangeMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientKeyExchangeMsg{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server.go

    	if _, err := hs.c.writeHandshakeRecord(certMsg, &hs.finishedHash); err != nil {
    		return err
    	}
    
    	if hs.hello.ocspStapling {
    		certStatus := new(certificateStatusMsg)
    		certStatus.response = hs.cert.OCSPStaple
    		if _, err := hs.c.writeHandshakeRecord(certStatus, &hs.finishedHash); err != nil {
    			return err
    		}
    	}
    
    	keyAgreement := hs.suite.ka(c.vers)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    			out0 = out
    			continue
    		}
    		if !bytes.Equal(out0, out) {
    			t.Fatalf("output differ:\n%s\n==========\n%s", out0, out)
    		}
    	}
    }
    
    // TestResponseFile tests that creating a response file to pass to the
    // external linker works correctly.
    func TestResponseFile(t *testing.T) {
    	t.Parallel()
    
    	testenv.MustHaveGoBuild(t)
    
    	// This test requires -linkmode=external. Currently all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top