Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for instrument (0.12 sec)

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

    		// If -coverpkg has been specified, then we instrument only
    		// the specific packages selected by the user-specified pattern(s).
    		match = make([]func(*Package) bool, len(cfg.BuildCoverPkg))
    		for i := range cfg.BuildCoverPkg {
    			match[i] = MatchPackage(cfg.BuildCoverPkg[i], base.Cwd())
    		}
    	} else {
    		// Without -coverpkg, instrument only packages in the main module
    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/internal/work/exec.go

    	// The .go file will use import "C" and is to be processed by cgo.
    	// For -cover test or build runs, this needs to happen after the cover
    	// tool is run; we don't want to instrument swig-generated Go files,
    	// see issue #64661.
    	if p.UsesSwig() {
    		outGo, outC, outCXX, err := b.swig(a, objdir, pcCFLAGS)
    		if err != nil {
    			return err
    		}
    		cgofiles = append(cgofiles, outGo...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	EM_TI_C6000      Machine = 140 /* The Texas Instruments TMS320C6000 DSP family */
    	EM_TI_C2000      Machine = 141 /* The Texas Instruments TMS320C2000 DSP family */
    	EM_TI_C5500      Machine = 142 /* The Texas Instruments TMS320C55x DSP family */
    	EM_TI_ARP32      Machine = 143 /* Texas Instruments Application Specific RISC Processor, 32bit fetch */
    	EM_TI_PRU        Machine = 144 /* Texas Instruments Programmable Realtime Unit */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top