Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for packageFiles2 (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/testenv/testenv.go

    // dstPath containing entries for the file mappings in packageFiles, as well
    // as for the packages transitively imported by the package(s) in pkgs.
    //
    // pkgs may include any package pattern that is valid to pass to 'go list',
    // so it may also be a list of Go source files all in the same directory.
    func WriteImportcfg(t testing.TB, dstPath string, packageFiles map[string]string, pkgs ...string) {
    	t.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. 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)
Back to top