Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for destroyables (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            given:
            withParallelThreads(2)
            buildFile << """
                def dir = rootProject.file("dir")
    
                aPing.destroyables.register dir
    
                bPing.outputs.file dir
            """
    
            expect:
            2.times {
                blockingServer.expectConcurrent(1, ":aPing", ":bPing")
                run ":aPing", ":bPing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

        }
    
        private
        suspend fun WriteContext.writeDestroyablesOf(task: TaskInternal) {
            val destroyables = (task.destroyables as TaskDestroyablesInternal).registeredFiles
            if (destroyables.isEmpty) {
                writeBoolean(false)
            } else {
                writeBoolean(true)
                write(destroyables)
            }
        }
    
        private
        suspend fun ReadContext.readDestroyablesOf(task: TaskInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         *
         * @return The outputs. Never returns null.
         */
        @Internal
        TaskOutputs getOutputs();
    
        /**
         * <p>Returns the destroyables of this task.</p>
         * @return The destroyables.  Never returns null.
         *
         * @since 4.0
         */
        @Internal
        TaskDestroyables getDestroyables();
    
        /**
         * Returns the local state of this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top