Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,627 for package_a (0.27 sec)

  1. src/cmd/doc/pkg.go

    	name        string       // Package name, json for encoding/json.
    	userPath    string       // String the user used to find this package.
    	pkg         *ast.Package // Parsed package.
    	file        *ast.File    // Merged from all files in the package
    	doc         *doc.Package
    	build       *build.Package
    	typedValue  map[*doc.Value]bool // Consts and vars related to types.
    	constructor map[*doc.Func]bool  // Constructors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build.go

    that pattern (see 'go help packages' for a description of package
    patterns). Without a pattern, the argument list applies only to the
    packages named on the command line. The flags may be repeated
    with different patterns in order to specify different arguments for
    different sets of packages. If a package matches patterns given in
    multiple flags, the latest match on the command line wins.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    When you apply a plugin like the `java-library` plugin, Gradle will automatically register some tasks and configure them with defaults.
    
    Let's define a task that packages JARs and a start script into an archive in an imaginary sample project:
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    gradle-project
    ├── app
    │   ├── build.gradle.kts    // app build logic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter_test.go

    	// file path for the package is different from the package path; this
    	// will expose the error if it is present.
    	//
    	// (Issue: Both the textual and the binary importer used the file path
    	// of the package to be imported as key into the shared packages map.
    	// However, the binary importer then used the package path to identify
    	// the imported package to mark it as complete; effectively marking the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

    	UsageLine: "go list [-f format] [-json] [-m] [list flags] [build flags] [packages]",
    	Short:     "list packages or modules",
    	Long: `
    List lists the named packages, one per line.
    The most commonly-used flags are -f and -json, which control the form
    of the output printed for each package. Other list flags, documented below,
    control more specific details.
    
    The default output shows the package import path:
    
        bytes
        encoding/json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Updating task dependencies.
    +
    `compileJava` must depend on `prepare`, `package` must depend on `compileJava` rather than `ant_build`, and `assemble` must depend on `package` rather than the standard Gradle `jar` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/generate/generate.go

    tag "generate" so that files may be examined by go generate but ignored
    during build.
    
    For packages with invalid code, generate processes only source files with a
    valid package clause.
    
    If any generator returns an error exit status, "go generate" skips
    all further processing for that package.
    
    The generator is run in the package's source directory.
    
    Go generate accepts two specific flags:
    
    	-run=""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. 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)
Back to top