Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for pkgName (0.19 sec)

  1. src/cmd/go/internal/work/exec.go

    	sh := b.Shell(a)
    	p := a.Package
    	p.Internal.Cover.Cfg = a.Objdir + "coveragecfg"
    	pcfg := covcmd.CoverPkgConfig{
    		PkgPath: p.ImportPath,
    		PkgName: p.Name,
    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ar.go

    			}
    			pname := fmt.Sprintf("%s(%s)", name, arhdr.name)
    			l = atolwhex(arhdr.size)
    
    			pkname := filepath.Base(name)
    			if i := strings.LastIndex(pkname, ".a"); i >= 0 {
    				pkname = pkname[:i]
    			}
    			libar := sym.Library{Pkg: pkname}
    			h := ldobj(ctxt, f, &libar, l, pname, name)
    			if h.ld == nil {
    				Errorf(nil, "%s unrecognized object file at offset %d", name, off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/test2json.go

    		c.output.write(line)
    		if bytes.Equal(trim, bigPass) {
    			c.result = "pass"
    		} else {
    			c.result = "fail"
    		}
    		return
    	}
    
    	// Special case for entirely skipped test binary: "?   \tpkgname\t[no test files]\n" is only line.
    	// Report it as plain output but remember to say skip in the final summary.
    	if bytes.HasPrefix(line, skipLinePrefix) && bytes.HasSuffix(trim, skipLineSuffix) && len(c.report) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top