Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for packagefile (0.25 sec)

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

    			before = ""
    		}
    		switch verb {
    		default:
    			log.Fatalf("%s:%d: unknown directive %q", file, lineNum, verb)
    		case "packagefile":
    			if before == "" || after == "" {
    				log.Fatalf(`%s:%d: invalid packagefile: syntax is "packagefile path=filename"`, file, lineNum)
    			}
    			ctxt.PackageFile[before] = after
    		case "packageshlib":
    			if before == "" || after == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaSourceIncrementalCompilationIntegrationTest.groovy

                @Target(ElementType.PACKAGE)
                public @interface Anno {
                       int value();
                }
            """
            def packageFile = file("src/main/${languageName}/foo/package-info.${languageName}")
            packageFile.text = """@Deprecated @annotations.Anno(Const.CONST + 1) package foo; import constant.Const;"""
            source(
                "package foo; class A {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:44:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. test/linkmain_run.go

    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	tmp := func(name string) string {
    		return filepath.Join(tmpDir, name)
    	}
    
        importcfg, err := exec.Command("go", "list", "-export", "-f", "{{if .Export}}packagefile {{.ImportPath}}={{.Export}}{{end}}", "std").Output()
        if err != nil {
            fmt.Println(err)
            os.Exit(1)
        }
        os.WriteFile(tmp("importcfg"), importcfg, 0644)
    
    	// helloworld.go is package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gcflags_patterns.txt

    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    # cgo.a should not be a dependency of internally-linked go package
    go build -ldflags='-linkmode=external -linkmode=internal' -n prog.go
    ! stderr 'packagefile .*runtime/cgo.a'
    
    -- z1/z.go --
    package z1
    import _ "y"
    import _ "z2"
    
    -- z1/z_test.go --
    package z1_test
    import "testing"
    import _ "z3"
    func Test(t *testing.T) {}
    
    -- z2/z.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/link/doc.go

    	-f
    		Ignore version mismatch in the linked archives.
    	-g
    		Disable Go package data checks.
    	-importcfg file
    		Read import configuration from file.
    		In the file, set packagefile, packageshlib to specify import resolution.
    	-installsuffix suffix
    		Look for packages in $GOROOT/pkg/$GOOS_$GOARCH_suffix
    		instead of $GOROOT/pkg/$GOOS_$GOARCH.
    	-k symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep.out

    > Task :processTemplates
    > Task :packageFiles
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  10. test/fixedbugs/bug369.go

    	}
    
    	check(os.Mkdir(tmp("test"), 0777))
    
    	stdlibimportcfg, err := os.ReadFile(os.Getenv("STDLIB_IMPORTCFG"))
    	check(err)
    	importcfg := string(stdlibimportcfg) + "\npackagefile test/slow=" + tmp("test/slow.o") + "\npackagefile test/fast=" + tmp("test/fast.o")
    	os.WriteFile(tmp("importcfg"), []byte(importcfg), 0644)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top