Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sendHeadRequest (0.18 sec)

  1. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

                Authenticator.setDefault(new ProxyAuthenticator(systemProperties));
            }
        }
    
        public void sendHeadRequest(URI uri) throws Exception {
            URL safeUrl = safeUri(uri).toURL();
            int responseCode = -1;
            try {
                HttpURLConnection conn = (HttpURLConnection)safeUrl.openConnection();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

                    }
                } else if (uri.getScheme().startsWith("http") && !isOffline) {
                    try {
                        new Download(new Logger(true), "gradlew", Download.UNKNOWN_VERSION).sendHeadRequest(uri);
                    } catch (Exception e) {
                        throw new UncheckedIOException(String.format(DISTRIBUTION_URL_EXCEPTION_MESSAGE, url), e);
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    ava.util.Properties); public void Download(Logger, DownloadProgressList, String, String, java.util.Map); public void Download(Logger, DownloadProgressList, String, String, java.util.Map, int); private void configureProxyAuthen(); public void sendHeadRequest(java.net.URI) throws Exception; public void download(java.net.URI, java.io.File) throws Exception; private void downloadInternal(java.net.URI, java.io.File) throws Exception; static java.net.URI safeUri(java.net.URI); private void addBasicAut...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
Back to top