Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stk (0.02 sec)

  1. src/cmd/go/internal/load/pkg.go

    	if !isMatchErr && (nogoErr != nil || isScanErr) {
    		stk.Push(path)
    		defer stk.Pop()
    	}
    
    	p.Error = &PackageError{
    		ImportStack: stk.Copy(),
    		Pos:         pos,
    		Err:         err,
    	}
    	p.Incomplete = true
    
    	if path != stk.Top() {
    		p.Error.setPos(importPos)
    	}
    }
    
    // Resolve returns the resolved version of imports,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		} else if pc > firstmoduledata.etext {
    			// "ExternalCode" is better than "etext".
    			pc = abi.FuncPCABIInternal(_ExternalCode) + sys.PCQuantum
    		}
    		stk[0] = pc
    		if mp.preemptoff != "" {
    			stk[1] = abi.FuncPCABIInternal(_GC) + sys.PCQuantum
    		} else {
    			stk[1] = abi.FuncPCABIInternal(_System) + sys.PCQuantum
    		}
    	}
    
    	if prof.hz.Load() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top