Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getShouldRunAfter (0.16 sec)

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

                public void run() {
                    shouldRunAfter.setValues(shouldRunAfterTasks);
                }
            });
        }
    
        @Internal
        @Override
        public TaskDependency getShouldRunAfter() {
            return shouldRunAfter;
        }
    
        private class ObservableActionWrapperList extends ObservableList {
            public ObservableActionWrapperList(List delegate) {
                super(delegate);
    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/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            def task = createTask(name)
            task.getTaskDependencies() >> brokenDependencies()
            task.getMustRunAfter() >> brokenDependencies()
            task.getShouldRunAfter() >> brokenDependencies()
            task.getFinalizedBy() >> taskDependencyResolvingTo(task, [])
            return task
        }
    
        private ScheduledWork scheduledWork(Node... nodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         *
         * @return The tasks that this task should run after. Returns an empty set if this task has no tasks it must run after.
         */
        @Internal
        TaskDependency getShouldRunAfter();
    
        /**
         * <p>The timeout of this task.</p>
         *
         * <pre class='autoTested'>
         *   task myTask {
         *       timeout = Duration.ofMinutes(10)
         *   }
         * </pre>
    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