Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 215 for original (0.15 sec)

  1. 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)
  2. 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)
  3. src/log/slog/handler_test.go

    		if got != test.want {
    			t.Errorf("%v: got %t, want %t", test.leveler, got, test.want)
    		}
    	}
    }
    
    func TestSecondWith(t *testing.T) {
    	// Verify that a second call to Logger.With does not corrupt
    	// the original.
    	var buf bytes.Buffer
    	h := NewTextHandler(&buf, &HandlerOptions{ReplaceAttr: removeKeys(TimeKey)})
    	logger := New(h).With(
    		String("app", "playground"),
    		String("role", "tester"),
    		Int("data_version", 2),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    	if r.checkFuncMisuse() {
    		bodyFunc.Body.List = append(bodyFunc.Body.List, r.assertReady(start, loop))
    		bodyFunc.Body.List = append(bodyFunc.Body.List, r.setState(abi.RF_PANIC, start))
    	}
    
    	// Original loop body (already rewritten by editStmt during inspect).
    	bodyFunc.Body.List = append(bodyFunc.Body.List, body...)
    
    	// end of loop body, set state to abi.RF_READY and return true to continue iteration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/internal/profile/profile.go

    // Demangle attempts to demangle and optionally simplify any function
    // names referenced in the profile. It works on a best-effort basis:
    // it will silently preserve the original names in case of any errors.
    func (p *Profile) Demangle(d Demangler) error {
    	// Collect names to demangle.
    	var names []string
    	for _, fn := range p.Function {
    		names = append(names, fn.SystemName)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/os/signal/doc.go

    flag and otherwise keep the signal handler. If Notify is called for an
    asynchronous signal, a Go signal handler will be installed for that
    signal. If, later, Reset is called for that signal, the original
    handling for that signal will be reinstalled, restoring the non-Go
    signal handler if any.
    
    Go code built without -buildmode=c-archive or -buildmode=c-shared will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/trace/internal/oldtrace/parser.go

    func (p *parser) parseEventBatches() (Events, error) {
    	// The ordering of CPU profile sample events in the data stream is based on
    	// when each run of the signal handler was able to acquire the spinlock,
    	// with original timestamps corresponding to when ReadTrace pulled the data
    	// off of the profBuf queue. Re-sort them by the timestamp we captured
    	// inside the signal handler.
    	slices.SortFunc(p.cpuSamples, func(a, b Event) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/magic.go

    //   ⎣x / c⎦ = ⎣⎣x * (m/2) / 2^n⎦ / 2^(s-1)⎦
    //   multiply + shift
    //
    // Case 2: c is even.
    //   ⎣x / c⎦ = ⎣(x/2) / (c/2)⎦
    //   ⎣x / c⎦ = ⎣⎣x/2⎦ / (c/2)⎦
    //     This is just the original problem, with x' = ⎣x/2⎦, c' = c/2, n' = n-1.
    //       s' = s-1
    //       m' = ⎡2^(n'+s')/c'⎤
    //          = ⎡2^(n+s-1)/c⎤
    //          = ⎡m/2⎤
    //   ⎣x / c⎦ = ⎣x' * m' / 2^(n'+s')⎦
    //   ⎣x / c⎦ = ⎣⎣x/2⎦ * ⎡m/2⎤ / 2^(n+s-2)⎦
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/shell.go

    //
    //	$ go build
    //	# fmt
    //	/usr/gopher/go/src/fmt/print.go:1090: undefined: asdf
    //	$
    //
    // reportCmd also replaces references to the work directory with $WORK, replaces
    // cgo file paths with the original file path, and replaces cgo-mangled names
    // with "C.name".
    //
    // desc is optional. If "", a.Package.Desc() is used.
    //
    // dir is optional. If "", a.Package.Dir is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top