Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,627 for package_a (0.12 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

        @Override
        protected Package getPackage(String name) {
            Package p = super.getPackage(name);
            if (p == null || !isPackageAllowed(p.getName())) {
                return null;
            }
            return p;
        }
    
        @Override
        protected Package[] getPackages() {
            List<Package> packages = new ArrayList<Package>();
            for (Package p : super.getPackages()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

             * @param packages list of package prefixes
             */
            public Link(String url, String... packages) {
                throwExceptionIfNull(url, "Url must not be null");
                if (packages.length == 0) {
                    throw new InvalidUserDataException("You must specify at least one package!");
                }
                for (String aPackage : packages) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/mod_all.txt

    )
    -- a/a.go --
    package a
    
    import _ "example.com/b"
    -- a/a_test.go --
    package a_test
    
    import _ "example.com/c"
    -- b/go.mod --
    module example.com/b
    
    go 1.15
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    -- c/go.mod --
    module example.com/c
    
    go 1.15
    
    require example.com/d v0.1.0
    -- c/c.go --
    package c
    -- c/c_test.go --
    package c_test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K 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