Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 248 for original (0.21 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    // along with info on call site scoring and the adjustments made to a
    // given score. Here profile is the PGO profile in use (may be
    // nil), budgetCallback is a callback that can be invoked to find out
    // the original pre-adjustment hairiness limit for the function, and
    // inlineHotMaxBudget is the constant of the same name used in the
    // inliner. Sample output lines:
    //
    // Score  Adjustment  Status  Callee  CallerPos ScoreFlags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    }
    
    // A rustState holds the current state of demangling a Rust string.
    type rustState struct {
    	orig          string          // the original string being demangled
    	str           string          // remainder of string to demangle
    	off           int             // offset of str within original string
    	buf           strings.Builder // demangled string being built
    	skip          bool            // don't print, just skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  3. src/runtime/asm_386.s

    	RET
    nosave:
    	// Now on a scheduling stack (a pthread-created stack).
    	SUBL	$32, SP
    	ANDL	$~15, SP	// alignment, perhaps unnecessary
    	MOVL	DX, 4(SP)	// save original stack pointer
    	MOVL	BX, 0(SP)	// first argument in x86-32 ABI
    	CALL	AX
    
    	MOVL	4(SP), CX	// restore original stack pointer
    	MOVL	CX, SP
    	MOVL	AX, ret+8(FP)
    	RET
    
    // cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/defer_test.go

    // D or its callees). If the defer processing reaches the started defer call D
    // again in the defer stack, then the original panic P1 is aborted and cannot
    // continue panic processing or be recovered. If the panic P2 does a recover at
    // some point, it will naturally remove the original panic P1 from the stack
    // (since the original panic had to be in frame F or a descendant of F).
    func TestAbortedPanic(t *testing.T) {
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/ssa/decompose.go

    		for _, v := range b.Values {
    			if v.Op != OpPhi {
    				continue
    			}
    			decomposeBuiltInPhi(v)
    		}
    	}
    
    	// Decompose other values
    	// Note: Leave dead values because we need to keep the original
    	// values around so the name component resolution below can still work.
    	applyRewrite(f, rewriteBlockdec, rewriteValuedec, leaveDeadValues)
    	if f.Config.RegSize == 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top