Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 220 for original (0.33 sec)

  1. src/text/template/parse/parse.go

    	if t.peek().typ == itemField {
    		chain := t.newChain(t.peek().pos, node)
    		for t.peek().typ == itemField {
    			chain.Add(t.next().val)
    		}
    		// Compatibility with original API: If the term is of type NodeField
    		// or NodeVariable, just put more fields on the original.
    		// Otherwise, keep the Chain node.
    		// Obvious parsing errors involving literal values are detected here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/go/types/typeset.go

    	// if a method is embedded via multiple overlapping embedded interfaces, we
    	// don't provide a guarantee which "original m" got chosen for the embedding
    	// interface. See also go.dev/issue/34421.
    	//
    	// If we don't care to provide this identity guarantee anymore, instead of
    	// reusing the original method in embeddings, we can clone the method's Func
    	// Object and give it the position of a corresponding embedded interface. Then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/dwarf.go

    // function, "to" is the symbol for the corresponding abstract
    // function, and "dclIdx" is the index of the symbol of interest with
    // respect to the Dcl slice of the original pre-optimization version
    // of the inlined function.
    func (c dwCtxt) RecordDclReference(from dwarf.Sym, to dwarf.Sym, dclIdx int, inlIndex int) {
    	ls := from.(*LSym)
    	tls := to.(*LSym)
    	ridx := len(ls.R) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	$-1, acc0
    	MOVD	p256const0<>(SB), acc1
    	MOVD	$0, acc2
    	MOVD	p256const1<>(SB), acc3
    	// Load the original value
    	LDP	0*16(a_ptr), (t0, t1)
    	LDP	1*16(a_ptr), (t2, t3)
    	// Speculatively subtract
    	SUBS	t0, acc0
    	SBCS	t1, acc1
    	SBCS	t2, acc2
    	SBC	t3, acc3
    	// If condition is 0, keep original value
    	CMP	$0, hlp0
    	CSEL	EQ, t0, acc0, acc0
    	CSEL	EQ, t1, acc1, acc1
    	CSEL	EQ, t2, acc2, acc2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. 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)
  6. src/regexp/all_test.go

    	re := compileTest(t, test.pat, "")
    	if re == nil {
    		return
    	}
    	m1 := re.MatchString(test.text)
    	m2 := re.Copy().MatchString(test.text)
    	if m1 != m2 {
    		t.Errorf("Copied Regexp match failure on %s: original gave %t; copy gave %t; should be %t",
    			test, m1, m2, len(test.matches) > 0)
    	}
    }
    
    func TestCopyMatch(t *testing.T) {
    	for _, test := range findTests {
    		copyMatchTest(t, &test)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/go/types/subst.go

    		// careful not to call any methods that would cause t to be expanded: doing
    		// so would result in deadlock.
    		//
    		// So we call t.Origin().TypeParams() rather than t.TypeParams().
    		orig := t.Origin()
    		n := orig.TypeParams().Len()
    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    		if t.TypeArgs().Len() != n {
    			return Typ[Invalid] // error reported elsewhere
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top