Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 167 for original (0.16 sec)

  1. src/runtime/race_ppc64le.s

    	MOVD	R8, R15	// save the original function
    	MOVD	R6, R17 // save the original arg list addr
    	MOVD	$__tsan_go_ignore_sync_begin(SB), R8 // func addr to call
    	MOVD    runtime·tls_g(SB), R10
    	MOVD    0(R10), g
    	MOVD    g_racectx(g), R3        // goroutine context
    	BL	racecall<>(SB)
    	MOVD	R15, R8	// restore the original function
    	MOVD	R17, R6 // restore arg list addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    // triggered this panic.
    func panicCheck1(pc uintptr, msg string) {
    	if goarch.IsWasm == 0 && stringslite.HasPrefix(funcname(findfunc(pc)), "runtime.") {
    		// Note: wasm can't tail call, so we can't get the original caller's pc.
    		throw(msg)
    	}
    	// TODO: is this redundant? How could we be in malloc
    	// but not in the runtime? runtime/internal/*, maybe?
    	gp := getg()
    	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    		*errors = append(*errors, err)
    		if clear {
    			return nil
    		}
    		return err
    	}
    	return nil
    }
    
    // chdir changes the current working directory to the named directory,
    // and then restore the original working directory at the end of the test.
    func chdir(t *testing.T, dir string) {
    	olddir, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("getwd %s: %v", dir, err)
    	}
    	if err := os.Chdir(dir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    				}
    				if result.crasherMsg == "" {
    					result.crasherMsg = err.Error()
    				}
    			}
    			if shouldPrintDebugInfo() {
    				w.coordinator.debugLogf(
    					"input minimized, id: %s, original id: %s, crasher: %t, originally crasher: %t, minimizing took: %s",
    					result.entry.Path,
    					input.entry.Path,
    					result.crasherMsg != "",
    					input.crasherMsg != "",
    					result.totalDuration,
    				)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    	// function for go:nowritebarrierrec analysis. Only filled in
    	// if nowritebarrierrecCheck != nil.
    	NWBRCalls *[]SymAndPos
    
    	// For wrapper functions, WrappedFunc point to the original Func.
    	// Currently only used for go/defer wrappers.
    	WrappedFunc *Func
    
    	// WasmImport is used by the //go:wasmimport directive to store info about
    	// a WebAssembly function import.
    	WasmImport *WasmImport
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git.go

    		return nil, err
    	}
    
    	// Stat may return cached info, so make a copy to modify here.
    	info := new(RevInfo)
    	*info = *statInfo
    	info.Origin = new(Origin)
    	if statInfo.Origin != nil {
    		*info.Origin = *statInfo.Origin
    	}
    	info.Origin.Ref = "HEAD"
    	info.Origin.Hash = refs["HEAD"]
    
    	return info, nil
    }
    
    // findRef finds some ref name for the given hash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/syscall/exec_linux.go

    	}
    
    	// Set the controlling TTY to Ctty
    	if sys.Setctty {
    		_, _, err1 = RawSyscall(SYS_IOCTL, uintptr(sys.Ctty), uintptr(TIOCSCTTY), 1)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Restore original rlimit.
    	if rlim != nil {
    		rawSetrlimit(RLIMIT_NOFILE, rlim)
    	}
    
    	// Enable tracing if requested.
    	// Do this right before exec so that we don't unnecessarily trace the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    // It is up to fn to arrange for that later execution, typically by recording
    // g in a data structure, causing something to call ready(g) later.
    // mcall returns to the original goroutine g later, when g has been rescheduled.
    // fn must not return at all; typically it ends by calling schedule, to let the m
    // run other goroutines.
    //
    // mcall can only be called from g stacks (not g0, not gsignal).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top