Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for registerOutputs (0.27 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/BuildOutputCleanupRegistry.java

    @ServiceScope(Scope.Build.class)
    public interface BuildOutputCleanupRegistry {
    
        /**
         * Registers outputs to be cleaned up as {@link org.gradle.api.Project#files(Object...)}.
         */
        void registerOutputs(Object files);
    
        /**
         * Determines if an output file is owned by this build and therefore can be safely removed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            // Register the project's source set output directories
            sourceSets.all(sourceSet -> buildOutputCleanupRegistry.registerOutputs(sourceSet.getOutput()));
        }
    
        /**
         * Unless there are other concerns, we'd prefer to run jar tasks prior to test tasks, as this might offer a small performance improvement
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            withGradleIsolate(gradle, userTypesCodec) {
                readCollection {
                    val files = readNonNull<FileCollection>()
                    buildOutputCleanupRegistry.registerOutputs(files)
                }
            }
        }
    
        private
        suspend fun DefaultWriteContext.writeCachedEnvironmentState(gradle: GradleInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top