Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for Atack (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DICS_START      DICS_STATE = 0x00000004 // The device is being started (if the request is for the currently active hardware profile).
    	DICS_STOP       DICS_STATE = 0x00000005 // The device is being stopped. The driver stack will be unloaded and the CSCONFIGFLAG_DO_NOT_START flag will be set for the device.
    )
    
    // DICS_FLAG specifies the scope of a device property change
    type DICS_FLAG uint32
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    	for _, n := range []int64{0, 7, -7, 1 << 30, -1 << 30, 1 << 50, -1 << 50} {
    		x := NewInt(3)
    		got := testing.AllocsPerRun(100, func() {
    			// NewInt should inline, and all its allocations
    			// can happen on the stack. Passing the result of NewInt
    			// to Add should not cause any of those allocations to escape.
    			x.Add(x, NewInt(n))
    		})
    		if got != 0 {
    			t.Errorf("x.Add(x, NewInt(%d)), wanted 0 allocations, got %f", n, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    				// it unresolved. Either some other query (perhaps a wildcard matching a
    				// newly-added dependency for some other missing package) will fill in
    				// the gaps, or we will report an error (with a better import stack) in
    				// the final LoadPackages call.
    				return true
    			}
    		}
    
    		mu.Lock()
    		upgrades = append(upgrades, pathSet{path: path, pkgMods: pkgMods, err: err})
    		mu.Unlock()
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		// or when immediate binding is explicitly requested,
    		// we force all symbol resolution to be done at program startup
    		// because lazy PLT resolution can use large amounts of stack at
    		// times we cannot allow it to do so.
    		argv = append(argv, "-Wl,-z,now")
    	}
    
    	if ctxt.IsELF && ctxt.DynlinkingGo() {
    		// Do not let the host linker generate COPY relocations. These
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	go122.EvGoSwitch:        (*ordering).advanceGoSwitch,
    	go122.EvGoSwitchDestroy: (*ordering).advanceGoSwitch,
    	go122.EvGoCreateBlocked: (*ordering).advanceGoCreate,
    
    	// GoStatus event with a stack. Added in Go 1.23.
    	go122.EvGoStatusStack: (*ordering).advanceGoStatus,
    
    	// Experimental events.
    
    	// Experimental heap span events. Added in Go 1.23.
    	go122.EvSpan:      (*ordering).advanceAllocFree,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_ppc64.go

    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_s390x.go

    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 73.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	-mutexprofile mutex.out
    	    Write a mutex contention profile to the specified file
    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    	    by default the directory in which "go test" is running.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_windows.go

    		case "arm":
    			// distToMove must be 8-byte aligned per ARM calling convention
    			// https://docs.microsoft.com/en-us/cpp/build/overview-of-arm-abi-conventions#stage-c-assignment-of-arguments-to-registers-and-stack
    			_, _, e1 = Syscall6(procSetFilePointerEx.Addr(), 6, uintptr(handle), 0, uintptr(distToMove), uintptr(distToMove>>32), uintptr(unsafe.Pointer(newFilePointer)), uintptr(whence))
    		}
    	}
    	if e1 != 0 {
    		return errnoErr(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		p := s.Prog(storeOp)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = v.Args[0].Reg()
    		ssagen.AddrAuto(&p.To, v)
    
    	case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    		// The assembler needs to wrap the entry safepoint/stack growth code with spill/unspill
    		// The loop only runs once.
    		for _, a := range v.Block.Func.RegArgs {
    			// Pass the spill/unspill information along to the assembler, offset by size of
    			// the saved LR slot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top