Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for packagefile (0.44 sec)

  1. src/cmd/link/internal/ld/link.go

    	compressDWARF bool
    
    	Libdir       []string
    	Library      []*sym.Library
    	LibraryByPkg map[string]*sym.Library
    	Shlibs       []Shlib
    	Textp        []loader.Sym
    	Moduledata   loader.Sym
    
    	PackageFile  map[string]string
    	PackageShlib map[string]string
    
    	tramps []loader.Sym // trampolines
    
    	compUnits []*sym.CompilationUnit // DWARF compilation units
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv.go

    	icfg.WriteString("# import config\n")
    	for k, v := range packageFiles {
    		fmt.Fprintf(icfg, "packagefile %s=%s\n", k, v)
    	}
    
    	if len(pkgs) > 0 {
    		// Use 'go list' to resolve any missing packages and rewrite the import map.
    		cmd := Command(t, GoToolPath(t), "list", "-export", "-deps", "-f", `{{if ne .ImportPath "command-line-arguments"}}{{if .Export}}{{.ImportPath}}={{.Export}}{{end}}{{end}}`)
    		cmd.Args = append(cmd.Args, pkgs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	GoFiles                   []string
    	NonGoFiles                []string
    	IgnoredFiles              []string
    	ImportMap                 map[string]string // maps import path to package path
    	PackageFile               map[string]string // maps package path to file of type information
    	Standard                  map[string]bool   // package belongs to standard library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

                @Target(ElementType.PACKAGE)
                public @interface Anno {
                       int value();
                }
                """
            ]
            def packageFile = file("impl/src/main/${languageName}/foo/package-info.${languageName}")
            packageFile.text = """@Deprecated @annotations.Anno(constant.Const.X + 1) package foo;"""
            source impl: [
                "package foo; class A {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		if imp == "unsafe" {
    			continue
    		}
    		dep := importMap[imp]
    		if imp != dep {
    			fmt.Fprintf(buf, "importmap %s=%s\n", imp, dep)
    		}
    		fmt.Fprintf(buf, "packagefile %s=%s\n", dep, packagefile(dep))
    	}
    	importcfg := pathf("%s/importcfg", workdir)
    	if err := os.WriteFile(importcfg, buf.Bytes(), 0666); err != nil {
    		fatalf("cannot write importcfg file: %v", err)
    	}
    
    	var archive string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		}
    	}
    	for _, a1 := range a.Deps {
    		p1 := a1.Package
    		if p1 == nil || p1.ImportPath == "" || a1.built == "" {
    			continue
    		}
    		fmt.Fprintf(&icfg, "packagefile %s=%s\n", p1.ImportPath, a1.built)
    	}
    
    	// Prepare Go embed config if needed.
    	// Unlike the import config, it's okay for the embed config to be empty.
    	var embedcfg []byte
    	if len(p.Internal.Embed) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	if ctxt.linkShared && ctxt.PackageShlib != nil {
    		if shlib := ctxt.PackageShlib[name]; shlib != "" {
    			return addlibpath(ctxt, "internal", "internal", "", name, shlib, zerofp)
    		}
    	}
    	if ctxt.PackageFile != nil {
    		if pname := ctxt.PackageFile[name]; pname != "" {
    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    		ctxt.Logf("loadinternal: cannot find %s\n", name)
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    var stdlibImportcfgString string
    
    func stdlibImportcfg() string {
    	stdlibImportcfgStringOnce.Do(func() {
    		output, err := exec.Command(goTool, "list", "-export", "-f", "{{if .Export}}packagefile {{.ImportPath}}={{.Export}}{{end}}", "std").Output()
    		if err != nil {
    			log.Fatal(err)
    		}
    		stdlibImportcfgString = string(output)
    	})
    	return stdlibImportcfgString
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/build.gradle

    }
    // end::custom-class-runtime-api[]
    
    // tag::inferred-task-dep-via-outputs[]
    tasks.register('packageFiles', Zip) {
        from processTemplates.map { it.outputDir }
    }
    // end::inferred-task-dep-via-outputs[]
    
    // tag::inferred-task-dep-via-task[]
    tasks.register('packageFiles2', Zip) {
        from processTemplates
    }
    // end::inferred-task-dep-via-task[]
    
    
    // tag::adhoc-destroyable-task[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

    }
    // end::custom-class-runtime-api[]
    
    // tag::inferred-task-dep-via-outputs[]
    tasks.register<Zip>("packageFiles") {
        from(processTemplates.map { it.outputDir })
    }
    // end::inferred-task-dep-via-outputs[]
    
    // tag::inferred-task-dep-via-task[]
    tasks.register<Zip>("packageFiles2") {
        from(processTemplates)
    }
    // end::inferred-task-dep-via-task[]
    
    
    // tag::adhoc-destroyable-task[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top