Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getNextOperation (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                    }
                    runOperation(operation);
                    operationCount++;
                    operation = getNextOperation();
                }
                return operationCount;
            }
    
            @Nullable
            private T getNextOperation() {
                lock.lock();
                try {
                    return workQueue.pollFirst();
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top