Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,201 for imposes (0.11 sec)

  1. src/cmd/compile/internal/types2/resolver.go

    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    	// pkgImports is the set of packages already imported by any package file seen
    	// so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate
    	// it (pkg.imports may not be empty if we are checking test files incrementally).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/go/types/resolver.go

    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    	// pkgImports is the set of packages already imported by any package file seen
    	// so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate
    	// it (pkg.imports may not be empty if we are checking test files incrementally).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_find.txt

    env GO111MODULE=off
    
    # go list -find should not report imports
    
    go list -f {{.Incomplete}} x/y/z...  # should probably exit non-zero but never has
    stdout true
    go list -find -f '{{.Incomplete}} {{.Imports}}' x/y/z...
    stdout '^false \[\]'
    
    # go list -find -compiled should use cached sources the second time it's run.
    # It might not find the same cached sources as "go build", but the sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 748 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectHierarchyUtils.java

    public class ProjectHierarchyUtils {
        /**
         * Gets the collection of the direct child projects from {@code thisProject}.
         * This method is safe to use in the Gradle internal code, as it does not impose the contracts
         * specific to the project public API.
         *
         * @param thisProject the project to get the children from. Expected to be {@link ProjectInternal}.
         * @return the collection of the child projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. cmd/import-boss/main.go

    		to   string
    	}
    
    	adj := make(map[edge]bool)
    	imports := make(map[string]struct{})
    	for from, tos := range in {
    		for _, to := range tos {
    			adj[edge{from, to}] = true
    			imports[to] = struct{}{}
    		}
    	}
    
    	// Warshal's algorithm
    	for k := range in {
    		for i := range in {
    			if !adj[edge{i, k}] {
    				continue
    			}
    			for j := range imports {
    				if adj[edge{i, j}] {
    					continue
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/line.go

    import (
    	"cmd/internal/goobj"
    	"cmd/internal/src"
    )
    
    // AddImport adds a package to the list of imported packages.
    func (ctxt *Link) AddImport(pkg string, fingerprint goobj.FingerprintType) {
    	ctxt.Imports = append(ctxt.Imports, goobj.ImportedPkg{Pkg: pkg, Fingerprint: fingerprint})
    }
    
    // getFileIndexAndLine returns the relative file index (local to the CU), and
    // the relative line number for a position (i.e., as adjusted by a //line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 892 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/std_vendor.txt

    [!compiler:gc] skip
    
    # 'go list' should report imports from _test.go in the TestImports field.
    go list -f '{{.TestImports}}'
    stdout net/http # from .TestImports
    
    # 'go list' should report standard-vendored packages by path.
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor
    
    # 'go list -test' should report vendored transitive dependencies of _test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 975 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsDslSchema.kt

    
    private
    val isTopLevelPluginManagementBlock = isTopLevelElement.implies(isPluginManagementCall)
    
    
    private
    val ignoreTopLevelPluginsPluginManagementAndConventions = isTopLevelElement.implies(
        isPluginManagementCall.not()
            .and(isTopLevelPluginsBlock.not())
            .and(isConventionsConfiguringCall.not())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/ForExternalUse.java

     * <p>
     * For example, the implementation of such an API might add validations checking third-party
     * plugins or build scripts for compliance with some limitations imposed by Gradle. In the internal
     * code, one does not expect such limitations.
     * <p>
     * This annotations should only be applied to Gradle public API declarations.
     *
     * @see AllowUsingApiForExternalUse
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top