Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FileBase (0.18 sec)

  1. src/cmd/compile/internal/types2/check.go

    				// (Ideally we would use the //build tag itself.)
    				check.errorf(file.PkgName, TooNew, "file requires newer Go version %v", fileVersion)
    			}
    		}
    		versions[file.Pos().FileBase()] = v // file.Pos().FileBase() may be nil for tests
    	}
    }
    
    // A bailout panic is used for early termination.
    type bailout struct{}
    
    func (check *Checker) handleBailout(err *error) {
    	switch p := recover().(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	Disasm       string
    	FileLine     string
    	InlinedCalls []WebListCall
    }
    
    // WebListCall holds the per-inlined-call information for HTML source code listing.
    type WebListCall struct {
    	SrcLine  string
    	FileBase string
    	Line     int
    }
    
    // MakeWebList returns an annotated source listing of rpt.
    // rpt.prof should contain inlined call info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top