Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,001 for package_a (0.15 sec)

  1. src/cmd/go/internal/vcs/vcs.go

    }
    
    var fetchGroup singleflight.Group
    var (
    	fetchCacheMu sync.Mutex
    	fetchCache   = map[string]fetchResult{} // key is metaImportsForPrefix's importPrefix
    )
    
    // metaImportsForPrefix takes a package's root import path as declared in a <meta> tag
    // and returns its HTML discovery URL and the parsed metaImport lines
    // found on the page.
    //
    // The importPath is of the form "golang.org/x/tools".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    // pipelines, or redirections typically done by shells. The package
    // behaves more like C's "exec" family of functions. To expand glob
    // patterns, either call the shell directly, taking care to escape any
    // dangerous input, or use the [path/filepath] package's Glob function.
    // To expand environment variables, use package os's ExpandEnv.
    //
    // Note that the examples in this package assume a Unix system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. cmd/import-boss/main.go

    }
    
    func loadPkgs(patterns ...string) ([]*packages.Package, error) {
    	cfg := packages.Config{
    		Mode: packages.NeedName | packages.NeedFiles | packages.NeedImports |
    			packages.NeedDeps | packages.NeedModule,
    		Tests: true,
    	}
    
    	klog.V(1).Infof("loading: %v", patterns)
    	tBefore := time.Now()
    	pkgs, err := packages.Load(&cfg, patterns...)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    	`,
    }
    
    var HelpPackages = &base.Command{
    	UsageLine: "packages",
    	Short:     "package lists and patterns",
    	Long: `
    Many commands apply to a set of packages:
    
    	go <action> [packages]
    
    Usually, [packages] is a list of import paths.
    
    An import path that is a rooted path or that begins with
    a . or .. element is interpreted as a file system path and
    denotes the package in that directory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	// i.e., locally vendored packages may not be found.
    	// The types package does not call Import if an ImporterFrom
    	// is present.
    	Importer
    
    	// ImportFrom returns the imported package for the given import
    	// path when imported by a package file located in dir.
    	// If the import failed, besides returning an error, ImportFrom
    	// is encouraged to cache and return a package anyway, if one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/embed/embed.go

    //
    // The //go:embed directive can be used with both exported and unexported variables,
    // depending on whether the package wants to make the data available to other packages.
    // It can only be used with variables at package scope, not with local variables.
    //
    // Patterns must not match files outside the package's module, such as ‘.git/*’ or symbolic links.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.go

    // and a1.Deps is the actions for building packages directly imported by
    // package main (what the compiler needs). The linker needs all packages
    // transitively imported by the whole program; addTransitiveLinkDeps
    // makes sure those are present in a.Deps.
    // If shlib is non-empty, then a corresponds to the build and installation of shlib,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stdlib_test.go

    		// imports. TestStdlib will collect errors once for each package.
    		return pkg, nil
    	}
    	return nil, err
    }
    
    // getDirPackage gets the package defined in dir from the future cache.
    //
    // If this is the first goroutine requesting the package, getDirPackage
    // type-checks.
    func (c *stdlibChecker) getDirPackage(dir string) (*Package, error) {
    	c.mu.Lock()
    	fut, ok := c.pkgs[dir]
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gc.go

    	}
    	return append(ldflags, "-extld="+joined), nil
    }
    
    // pluginPath computes the package path for a plugin main package.
    //
    // This is typically the import path of the main package p, unless the
    // plugin is being built directly from source files. In that case we
    // combine the package build ID with the contents of the main package
    // source files. This allows us to identify two different plugins
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/go/build/deps_test.go

    // Existing packages should not have their constraints relaxed
    // without prior discussion.
    // Negative assertions should almost never be removed.
    //
    // "a < b" means package b can import package a.
    //
    // See `go doc internal/dag' for the full syntax.
    //
    // All-caps names are pseudo-names for specific points
    // in the dependency lattice.
    var depsRules = `
    	# No dependencies allowed for any of these packages.
    	NONE
    	< unsafe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top