Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 263 for Atack (0.05 sec)

  1. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    	}
    
    	// Common individual register masks
    	var (
    		gp         = buildReg("R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R18 R19 R20 R21 R23 R24 R25 R26 R27 R28 R29 R31") // R1 is LR, R2 is thread pointer, R3 is stack pointer, R22 is g, R30 is REGTMP
    		gpg        = gp | buildReg("g")
    		gpsp       = gp | buildReg("SP")
    		gpspg      = gpg | buildReg("SP")
    		gpspsbg    = gpspg | buildReg("SB")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows_test.go

    	}
    	if !strings.Contains(o, "Exception 0xbad") {
    		t.Fatalf("No stack trace: %v", o)
    	}
    }
    
    func TestZeroDivisionException(t *testing.T) {
    	o := runTestProg(t, "testprog", "ZeroDivisionException")
    	if !strings.Contains(o, "panic: runtime error: integer divide by zero") {
    		t.Fatalf("No stack trace: %v", o)
    	}
    }
    
    func TestWERDialogue(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/module.go

    // needing different casings of a file path, but it would be fairly illegible
    // to most programmers when those paths appeared in the file system
    // (including in file paths in compiler errors and stack traces)
    // in web server logs, and so on. Instead, we want a safe escaped form that
    // leaves most paths unaltered.
    //
    // The safe escaped form is to replace every uppercase letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/convert.go

    		// n is a readonly global; use it directly.
    		value = n
    	case conv.Esc() == ir.EscNone && fromType.Size() <= 1024:
    		// n does not escape. Use a stack temporary initialized to n.
    		value = typecheck.TempAt(base.Pos, ir.CurFunc, fromType)
    		init.Append(typecheck.Stmt(ir.NewAssignStmt(base.Pos, value, n)))
    	}
    	if value != nil {
    		// The interface data word is &value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. src/runtime/metrics_test.go

    					}) {
    						// stk is a call stack that is still on the user stack when
    						// it calls runtime.unlock. Add the extra function that
    						// we'll see, when the static lock ranking implementation of
    						// runtime.unlockWithRank switches to the system stack.
    						stk = append([]string{"runtime.unlockWithRank"}, stk...)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. src/runtime/string.go

    	return unsafe.String((*byte)(p), n)
    }
    
    // stringDataOnStack reports whether the string's data is
    // stored on the current goroutine's stack.
    func stringDataOnStack(s string) bool {
    	ptr := uintptr(unsafe.Pointer(unsafe.StringData(s)))
    	stk := getg().stack
    	return stk.lo <= ptr && ptr < stk.hi
    }
    
    func rawstringtmp(buf *tmpBuf, l int) (s string, b []byte) {
    	if buf != nil && l <= len(buf) {
    		b = buf[:l]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    	cv := mkCounterVarName(len(f.pkg.counterLengths))
    	f.fn.counterVar = cv
    }
    
    func (f *File) postFunc(fn ast.Node, funcname string, flit bool, body *ast.BlockStmt) {
    
    	// Tack on single counter write if we are in "perfunc" mode.
    	singleCtr := ""
    	if pkgconfig.Granularity == "perfunc" {
    		singleCtr = "; " + f.newCounter(fn.Pos(), fn.Pos(), 1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    	// max(maxID, numLMS/2). This level of the recursion needs maxID,
    	// and all deeper levels of the recursion will need no more than numLMS/2,
    	// so this one allocation is guaranteed to suffice for the entire stack
    	// of recursive calls.
    	tmp := oldTmp
    	if len(tmp) < len(saTmp) {
    		tmp = saTmp
    	}
    	if len(tmp) < numLMS {
    		// TestSAIS/forcealloc reaches this code.
    		n := maxID
    		if n < numLMS/2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/testing.go

    	// it would run on a test failure. Because we send on c.signal during
    	// a top-of-stack deferred function now, we know that the send
    	// only happens after any other stacked defers have completed.
    	runtime.Goexit()
    }
    
    // log generates the output. It's always at the same stack depth.
    func (c *common) log(s string) {
    	c.output = append(c.output, decorate(s, true)...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Matching includes the function name, filename or object name."),
    	"tagroot": helpText(
    		"Adds pseudo stack frames for labels key/value pairs at the callstack root.",
    		"A comma-separated list of label keys.",
    		"The first key creates frames at the new root."),
    	"tagleaf": helpText(
    		"Adds pseudo stack frames for labels key/value pairs at the callstack leaf.",
    		"A comma-separated list of label keys.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top