Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for importPos (0.26 sec)

  1. src/go/build/build.go

    	p.TestEmbedPatterns, p.TestEmbedPatternPos = cleanDecls(testEmbedPos)
    	p.XTestEmbedPatterns, p.XTestEmbedPatternPos = cleanDecls(xTestEmbedPos)
    
    	p.Imports, p.ImportPos = cleanDecls(importPos)
    	p.TestImports, p.TestImportPos = cleanDecls(testImportPos)
    	p.XTestImports, p.XTestImportPos = cleanDecls(xTestImportPos)
    
    	// add the .S/.sx files only if we are using cgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                DefaultModelProblemCollector problems,
                Collection<String> importIds) {
            DependencyManagement depMgmt = model.getDependencyManagement();
    
            if (depMgmt == null) {
                return;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    	// If we didn't scan all of the imports from the main module, or didn't use
    	// imports.AnyTags, then we didn't necessarily load every package that
    	// contributes “direct” imports — so we can't safely mark existing direct
    	// dependencies in ld.requirements as indirect-only. Propagate them as direct.
    	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
    	if loadedDirect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                Collection<String> importIds) {
            DependencyManagement depMgmt = model.getDependencyManagement();
    
            if (depMgmt == null) {
                return model;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    		}
    
    		imports := pkg.Imports()
    		if len(imports) != 1 {
    			t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
    			continue
    		}
    		imp := imports[0]
    		if imp.Name() != "foo" {
    			t.Errorf(`for %s importer, got %q, want "foo"`, compiler, imp.Name())
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    		}
    
    		imports := pkg.Imports()
    		if len(imports) != 1 {
    			t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
    			continue
    		}
    		imp := imports[0]
    		if imp.Name() != "foo" {
    			t.Errorf(`for %s importer, got %q, want "foo"`, compiler, imp.Name())
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

     * on performance, by taking advantage of knowledge of Gradle default imports, including a mapping from simple name to fully qualified class name. It also avoids unnecessary lookups of classnodes.
     *
     * @since 2.12
     */
    public class GradleResolveVisitor extends ResolveVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    		p.next()
    	} else {
    		p.expect(token.STRING) // use expect() error handling
    	}
    	p.expectSemi() // call before accessing p.linecomment
    
    	// collect imports
    	spec := &ast.ImportSpec{doc, ident, path, p.lineComment}
    	p.imports = append(p.imports, spec)
    
    	return spec
    }
    
    func parseConstSpec(p *parser, doc *ast.CommentGroup, iota int) ast.Spec {
    	if p.trace {
    		defer un(trace(p, "ConstSpec"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	opts := modload.PackageOpts{
    		Tags:                     imports.AnyTags(),
    		VendorModulesInGOROOTSrc: true,
    		LoadTests:                *getT,
    		AssumeRootsImported:      true, // After 'go get foo', imports of foo should build.
    		SilencePackageErrors:     true, // May be fixed by subsequent upgrades or downgrades.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    // internal linking, this may turn weak imports into strong imports,
    // which could cause dynamic linking to fail if a symbol really isn't
    // defined. However, the standard library depends on everything it
    // imports, and this is the primary use of dynamic symbol tables with
    // internal linking.
    func elfImportedSymbols(f *elf.File) []elf.ImportedSymbol {
    	syms, _ := f.DynamicSymbols()
    	var imports []elf.ImportedSymbol
    	for _, s := range syms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top