Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ResolutionErrorRenderer.java

                    handleResolutionError(failure);
                }
            });
        }
    
        private void handleResolutionError(Throwable cause) {
            if (cause instanceof VersionConflictException) {
                handleConflict((VersionConflictException) cause);
            } else if (cause instanceof LockOutOfDateException) {
                handleOutOfDateLocks((LockOutOfDateException) cause);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 17:52:50 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top