Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 248 for original (0.43 sec)

  1. src/go/scanner/scanner_test.go

    		"//line File2:20\n" +
    		"@\n" + // different file, but same line
    		"//line File2:1\n" +
    		"@ @\n" + // same file, decreasing line number
    		"//line File1:1\n" +
    		"@ @ @" // original file, line 1 again
    
    	var list ErrorList
    	eh := func(pos token.Position, msg string) { list.Add(pos, msg) }
    
    	var s Scanner
    	s.Init(fset.AddFile("File1", fset.Base(), len(src)), []byte(src), eh, dontInsertSemis)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    package dwarfgen
    
    import (
    	"fmt"
    	"strings"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/internal/dwarf"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    )
    
    // To identify variables by original source position.
    type varPos struct {
    	DeclName string
    	DeclFile string
    	DeclLine uint
    	DeclCol  uint
    }
    
    // This is the main entry point for collection of raw material to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/sym.go

    		// Data must be in a reliable order for reproducible builds.
    		// The original entries are in a reliable order, but the TOC symbols
    		// that are added in Progedit are added by different goroutines
    		// that can be scheduled independently. We need to reorder those
    		// symbols reliably. Sort by name but use a stable sort, so that
    		// any original entries with the same name (all DWARFVAR symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/debug/pe/file_test.go

    	{
    		// testdata/vmlinuz-4.15.0-47-generic is a trimmed down version of Linux Kernel image.
    		// The original Linux Kernel image is about 8M and it is not recommended to add such a big binary file to the repo.
    		// Moreover only a very small portion of the original Kernel image was being parsed by debug/pe package.
    		// In order to identify this portion, the original image was first parsed by modified debug/pe package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. src/encoding/binary/binary.go

    		return 4 * len(data), nil
    	case []float64:
    		return 8 * len(data), nil
    	}
    	return 0, nil
    }
    
    // ensure grows buf to length len(buf) + n and returns the grown buffer
    // and a slice starting at the original length of buf (that is, buf2[len(buf):]).
    func ensure(buf []byte, n int) (buf2, pos []byte) {
    	l := len(buf)
    	buf = slices.Grow(buf, n)[:l+n]
    	return buf, buf[l:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		BodyBase
    		Match, Cond, Result string // top comments
    		Check               string // top-level boolean expression
    
    		Alloc        int    // for unique var names
    		Loc          string // file name & line number of the original rule
    		CommuteDepth int    // used to track depth of commute loops
    	}
    	Declare struct {
    		Name  string
    		Value ast.Expr
    	}
    	CondBreak struct {
    		Cond              ast.Expr
    		InsideCommuteLoop bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall<ABIInternal>(SB),NOSPLIT,$0-20
    	// R3 = fn
    	// R4 = arg
    
    	MOVD	R1, R7		// save original stack pointer
    	CMP	$0, g
    	BEQ	nosave
    	MOVD	g, R5
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    		}
    
    	case *Named:
    		// Two named types unify if their type names originate in the same type declaration.
    		// If they are instantiated, their type argument lists must unify.
    		if y := asNamed(y); y != nil {
    			// Check type arguments before origins so they unify
    			// even if the origins don't match; for better error
    			// messages (see go.dev/issue/53692).
    			xargs := x.TypeArgs().list()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		test.Preds = append(test.Preds, Edge{bb, p.i})
    
    		// Must correct all the other phi functions in the header for new incoming edge.
    		// Except for mem phis, it will be the same value seen on the original
    		// backedge at index i.
    		for _, v := range h.Values {
    			if v.Op == OpPhi && v != headerMemPhi {
    				v.AddArg(v.Args[i])
    			}
    		}
    	}
    
    	f.invalidateCFG()
    
    	if f.pass.debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. src/net/http/pattern.go

    	"net/url"
    	"strings"
    	"unicode"
    )
    
    // A pattern is something that can be matched against an HTTP request.
    // It has an optional method, an optional host, and a path.
    type pattern struct {
    	str    string // original string
    	method string
    	host   string
    	// The representation of a path differs from the surface syntax, which
    	// simplifies most algorithms.
    	//
    	// Paths ending in '/' are represented with an anonymous "..." wildcard.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top