Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Stacks (0.48 sec)

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

    	// If the error is an ImportPathError, and the last path on the stack appears
    	// in the error message, omit that path from the stack to avoid repetition.
    	// If an ImportPathError wraps another ImportPathError that matches the
    	// last path on the stack, we don't omit the path. An error like
    	// "package A imports B: error loading C caused by B" would not be clearer
    	// if "imports B" were omitted.
    	if len(p.ImportStack) == 0 {
    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/cmd/go/alldocs.go

    // GIT_ALLOW_PROTOCOL environment variable can be set (For more details see:
    // 'go help environment').
    //
    // If the import path is not a known code hosting site and also lacks a
    // version control qualifier, the go tool attempts to fetch the import
    // over https/http and looks for a <meta> tag in the document's HTML
    // <head>.
    //
    // The meta tag has the form:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback.go

    	for _, c := range buf {
    		Used += c
    	}
    }
    
    var splitTests = []func(){
    	// Edit .+1,/^}/-1|seq 4 4 5000 | sed 's/.*/	stack&,/' | fmt
    	stack4, stack8, stack12, stack16, stack20, stack24, stack28,
    	stack32, stack36, stack40, stack44, stack48, stack52, stack56,
    	stack60, stack64, stack68, stack72, stack76, stack80, stack84,
    	stack88, stack92, stack96, stack100, stack104, stack108, stack112,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    	// Older versions of GCC say "unrecognised debug output level".
    	// For -fsplit-stack GCC says "'-fsplit-stack' is not supported".
    	supported := !bytes.Contains(out, []byte("unrecognized")) &&
    		!bytes.Contains(out, []byte("unknown")) &&
    		!bytes.Contains(out, []byte("unrecognised")) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top