Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for packagefile (0.21 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep.sample.conf

    executable: gradle
    args: clean packageFiles
    expected-output-file: inferredTaskDep.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 146 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep2.sample.conf

    executable: gradle
    args: clean packageFiles2
    expected-output-file: inferredTaskDep2.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep2.out

    > Task :processTemplates
    > Task :packageFiles2
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 116 bytes
    - Viewed (0)
  6. test/linkobj.go

    		// The compiler expects the files being read to have the right suffix.
    		o := "o"
    		if round == 1 {
    			o = "a"
    		}
    
    		importcfg := string(stdlibimportcfg) + "\npackagefile p1=p1." + o + "\npackagefile p2=p2." + o
    		os.WriteFile("importcfg", []byte(importcfg), 0644)
    
    		// inlining is disabled to make sure that the link objects contain needed code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter_test.go

    	// filename must end with ".go"
    	basename, ok := strings.CutSuffix(filepath.Base(filename), ".go")
    	if !ok {
    		t.Fatalf("filename doesn't end in .go: %s", filename)
    	}
    	objname := basename + ".o"
    	outname := filepath.Join(outdirname, objname)
    
    	importcfgfile := os.DevNull
    	if len(packageFiles) > 0 || len(pkgImports) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirResolveExtensionInfoProvider.kt

                // of the root-level KtFirPackageScope.
                val seenTopLevelPackages = mutableSetOf<Name>()
                for (tool in tools) {
                    for (packageName in tool.packageFilter.getAllSubPackages(FqName.ROOT)) {
                        if (seenTopLevelPackages.add(packageName) && nameFilter(packageName)) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    .Output of **`gradle clean packageFiles`**
    ----
    > gradle clean packageFiles
    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top