Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for eagerTask (0.09 sec)

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

            } else {
                collectStatistics = false;
            }
        }
    
        public boolean isCollecting() {
            return collectStatistics;
        }
    
        public void eagerTask(Class<?> type) {
            if (collectStatistics) {
                eagerTasks.incrementAndGet();
                synchronized (typeCounts) {
                    Integer count = typeCounts.get(type);
                    if (count == null) {
                        count = 1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top