Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for matchPackages (0.29 sec)

  1. src/go/build/deps_test.go

    	CGO, internal/syscall/unix < net/internal/cgotest;
    
    
    `
    
    // listStdPkgs returns the same list of packages as "go list std".
    func listStdPkgs(goroot string) ([]string, error) {
    	// Based on cmd/go's matchPackages function.
    	var pkgs []string
    
    	src := filepath.Join(goroot, "src") + string(filepath.Separator)
    	walkFn := func(path string, d fs.DirEntry, err error) error {
    		if err != nil || !d.IsDir() || path == src {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    					}
    					matchPackages(ctx, m, opts.Tags, omitStd, matchModules)
    				} else {
    					// Starting with the packages in the main module,
    					// enumerate the full list of "all".
    					m.Pkgs = ld.computePatternAll()
    				}
    
    			case m.Pattern() == "std" || m.Pattern() == "cmd":
    				if m.Pkgs == nil {
    					m.MatchPackages() // Locate the packages within GOROOT/src.
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	var writeCoverMetaAct *work.Action
    
    	if cfg.BuildCoverPkg != nil {
    		match := make([]func(*load.Package) bool, len(cfg.BuildCoverPkg))
    		for i := range cfg.BuildCoverPkg {
    			match[i] = load.MatchPackage(cfg.BuildCoverPkg[i], base.Cwd())
    		}
    
    		// Select for coverage all dependencies matching the -coverpkg
    		// patterns.
    		plist := load.TestPackageList(ctx, pkgOpts, pkgs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    		// 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
    		// (if any), as well as packages/files specifically named on the
    		// command line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top