Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isUnrecoverable5xxStatusCode (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ResolveExceptionAnalyzer.java

            return false;
        }
    
        public static boolean isCriticalFailure(Throwable throwable) {
            Throwable rootCause = Throwables.getRootCause(throwable);
            return isTimeoutException(rootCause) || isUnrecoverable5xxStatusCode(rootCause);
        }
    
        /**
         * See <a href="http://hc.apache.org/httpclient-3.x/exception-handling.html">HTTPClient exception handling</a> for more information.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top