Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isConfigurable (0.21 sec)

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

        }
    
        public void mutate(String method, Runnable action) {
            if (!task.getState().isConfigurable()) {
                throw new IllegalStateException(format(method));
            }
            action.run();
        }
    
        public <T> T mutate(String method, Callable<T> action) {
            if (!task.getState().isConfigurable()) {
                throw new IllegalStateException(format(method));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top