Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MatchPackages (0.17 sec)

  1. src/cmd/go/internal/modload/search.go

    )
    
    type stdFilter int8
    
    const (
    	omitStd = stdFilter(iota)
    	includeStd
    )
    
    // matchPackages is like m.MatchPackages, but uses a local variable (rather than
    // a global) for tags, can include or exclude packages in the standard library,
    // and is restricted to the given list of modules.
    func matchPackages(ctx context.Context, m *search.Match, tags map[string]bool, filter stdFilter, modules []module.Version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/search/search.go

    //
    // If any errors may have caused the set of packages to be incomplete,
    // MatchPackages appends those errors to m.Errs.
    func (m *Match) MatchPackages() {
    	m.Pkgs = []string{}
    	if m.IsLocal() {
    		m.AddError(fmt.Errorf("internal error: MatchPackages: %s is not a valid package pattern", m.pattern))
    		return
    	}
    
    	if m.IsLiteral() {
    		m.Pkgs = []string{m.pattern}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/modload/query.go

    			return nil, nil, &WildcardInFirstElementError{Pattern: pattern, Query: query}
    		}
    		match = func(mod module.Version, roots []string, isLocal bool) *search.Match {
    			m := search.NewMatch(pattern)
    			matchPackages(ctx, m, imports.AnyTags(), omitStd, []module.Version{mod})
    			return m
    		}
    	} else {
    		match = func(mod module.Version, roots []string, isLocal bool) *search.Match {
    			m := search.NewMatch(pattern)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
Back to top