Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for destroyables (0.54 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

        }
    
        public static class TaskWithDestroyable extends TaskWithAction {
            File destroyable;
    
            @Inject
            public TaskWithDestroyable(File destroyable) {
                this.destroyable = destroyable;
            }
    
            @Destroys
            public File getDestroyable() {
                return destroyable;
            }
        }
    
        public static class TaskWithNestedBean extends TaskWithAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/PreCreateOutputParentsStepTest.groovy

            given:
            def outputDir = file("outDir")
            def outputFile = file("parent/outFile")
            def localStateFile = file("local-state/stateFile")
            def destroyableFile = file("destroyable/file.txt")
    
            when:
            step.execute(work, context)
    
            then:
            _ * work.visitOutputs(_ as File, _ as UnitOfWork.OutputVisitor) >> { File workspace, UnitOfWork.OutputVisitor visitor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BroadcastChangingOutputsStepTest.groovy

        def "notifies listener about specific outputs changing"() {
            def outputDir = file("output-dir")
            def localStateDir = file("local-state-dir")
            def destroyableDir = file("destroyable-dir")
            def changingOutputs = [
                outputDir.absolutePath,
                destroyableDir.absolutePath,
                localStateDir.absolutePath
            ]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top