Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for urlConnection (0.82 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            // This is to prevent the jar file being held open
            URL url = new URL("jar:file://valid_jar_url_syntax.jar!/")
            URLConnection urlConnection = url.openConnection()
            def original = urlConnection.getDefaultUseCaches()
            urlConnection.setDefaultUseCaches(false)
    
            try {
                URL[] urls = [new URL("jar:${jar.toURI().toURL()}!/")] as URL[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

                // To determine the dependencies of the class, load up the byte code and look for CONSTANT_Class entries in the constant pool
    
                ClassReader reader;
                URLConnection urlConnection = resource.openConnection();
                if (urlConnection instanceof JarURLConnection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

                URLConnection urlConnection = url.openConnection();
                urlConnection.setDefaultUseCaches(false);
            } catch (IOException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        static Package[] getPackages(ClassLoader classLoader) {
            return CLASS_LOADER_PACKAGES_FETCHER.getPackages(classLoader);
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/gradle-cli-main/src/main/java/org/gradle/internal/jvm/GradleVersionNumberLoader.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm;
    
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.Properties;
    
    import static java.lang.String.format;
    
    public class GradleVersionNumberLoader {
    
        private static final String RESOURCE_NAME = "org/gradle/build-receipt.properties";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

    import java.net.HttpURLConnection;
    import java.net.PasswordAuthentication;
    import java.net.SocketTimeoutException;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Properties;
    
    public class Download implements IDownload {
        public static final String UNKNOWN_VERSION = "0";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. settings.gradle.kts

    include(":okhttp-idna-mapping-table")
    include(":okhttp-java-net-cookiejar")
    include(":okhttp-logging-interceptor")
    include(":okhttp-sse")
    include(":okhttp-testing-support")
    include(":okhttp-tls")
    include(":okhttp-urlconnection")
    include(":samples:compare")
    include(":samples:crawler")
    include(":samples:guide")
    include(":samples:simple-client")
    include(":samples:slack")
    include(":samples:static-server")
    include(":samples:tlssurvey")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Apr 14 14:24:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

         */
    
        @Override
        public String toString () {
            return Strings.maskSecretValue(url.toString());
        }
    
    
        /* URLConnection implementation */
        /**
         * This URLConnection method just returns the result of <tt>length()</tt>.
         *
         * @return the length of this file or 0 if it refers to a directory
         */
        @Deprecated
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.EnumSet;
    import java.util.Formatter;
    import java.util.HashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.ObjectOutputStream;
    import java.io.OutputStream;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.EnumSet;
    import java.util.Formatter;
    import java.util.HashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_4x.md

        `multipart/mixed; boundary="abc"`.
    
     *  New: `Authenticator.JAVA_NET_AUTHENTICATOR` forwards authentication requests to
        `java.net.Authenticator`. This obsoletes `JavaNetAuthenticator` in the `okhttp-urlconnection`
        module.
    
     *  New: `CertificatePinner` now offers an API for inspecting the configured pins.
    
     *  Upgrade: [Okio 2.6.0][okio_2_6_0].
    
        ```kotlin
        implementation("com.squareup.okio:okio:2.6.0")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top