Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for original (0.17 sec)

  1. src/net/http/httputil/reverseproxy.go

    type ReverseProxy struct {
    	// Rewrite must be a function which modifies
    	// the request into a new request to be sent
    	// using Transport. Its response is then copied
    	// back to the original client unmodified.
    	// Rewrite must not access the provided ProxyRequest
    	// or its contents after returning.
    	//
    	// The Forwarded, X-Forwarded, X-Forwarded-Host,
    	// and X-Forwarded-Proto headers are removed from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_s390x.go

    // slice with the contents of the given slice followed by that many bytes and a
    // second slice that aliases into it and contains only the extra bytes. If the
    // original slice has sufficient capacity then no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    type JSONTree map[string]map[string]interface{}
    
    // A TextEdit describes the replacement of a portion of a file.
    // Start and End are zero-based half-open indices into the original byte
    // sequence of the file, and New is the new text.
    type JSONTextEdit struct {
    	Filename string `json:"filename"`
    	Start    int    `json:"start"`
    	End      int    `json:"end"`
    	New      string `json:"new"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/os/signal/signal_cgo_test.go

    	// foreground process group. This process will take over as foreground
    	// from subprocess 2 (step 4 above).
    	// - GO_TEST_TERMINAL_SIGNALS=2: This process create a child process
    	// group of subprocess 1, and is the original foreground process group
    	// for the PTY. This subprocess is the one that is SIGSTOP'd.
    
    	if runtime.GOOS == "dragonfly" {
    		t.Skip("skipping: wait hangs on dragonfly; see https://go.dev/issue/56132")
    	}
    
    	scale := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/net/http/client.go

    // followed. If permitted, a 301, 302, or 303 redirect causes
    // subsequent requests to use HTTP method GET
    // (or HEAD if the original request was HEAD), with no body.
    // A 307 or 308 redirect preserves the original HTTP method and body,
    // provided that the [Request.GetBody] function is defined.
    // The [NewRequest] function automatically sets GetBody for common
    // standard library body types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. src/runtime/cgocall.go

    // taken from the frame structure, records the results in the frame,
    // and returns to runtime.asmcgocall.
    //
    // After it regains control, runtime.asmcgocall switches back to the
    // original g (m->curg)'s stack and returns to runtime.cgocall.
    //
    // After it regains control, runtime.cgocall calls exitsyscall, which blocks
    // until this m can run Go code without violating the $GOMAXPROCS limit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/runtime/asm_loong64.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall(SB),NOSPLIT,$0-20
    	MOVV	fn+0(FP), R25
    	MOVV	arg+8(FP), R4
    
    	MOVV	R3, R12	// save original stack pointer
    	MOVV	g, R13
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already.
    	MOVV	g_m(g), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/runtime/asm_mipsx.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall(SB),NOSPLIT,$0-12
    	MOVW	fn+0(FP), R25
    	MOVW	arg+4(FP), R4
    
    	MOVW	R29, R3	// save original stack pointer
    	MOVW	g, R2
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm.go

    // slice with the contents of the given slice followed by that many bytes and a
    // second slice that aliases into it and contains only the extra bytes. If the
    // original slice has sufficient capacity then no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sccp.go

    	// It's fragile and error-prone. We did a trick by reusing the existing rules
    	// in generic rules for compile-time evaluation. But generic rules rewrite
    	// original value, this behavior is undesired, because the lattice of values
    	// may change multiple times, once it was rewritten, we lose the opportunity
    	// to change it permanently, which can lead to errors. For example, We cannot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top