Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setFinalizedBy (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        }
    
        @Internal
        @Override
        public TaskDependency getMustRunAfter() {
            return mustRunAfter;
        }
    
        @Override
        public void setFinalizedBy(final Iterable<?> finalizedByTasks) {
            taskMutator.mutate("Task.setFinalizedBy(Iterable)", new Runnable() {
                @Override
                public void run() {
                    finalizedBy.setValues(finalizedByTasks);
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * a finalizer task.</p>
         *
         * @param finalizedBy The tasks that finalize this task.
         */
        void setFinalizedBy(Iterable<?> finalizedBy);
    
        /**
         * <p>Returns tasks that finalize this task.</p>
         *
         * @return The tasks that finalize this task. Returns an empty set if there are no finalising tasks for 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