Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDefaultUseCaches (0.18 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[]
                URLClassLoader ucl = new URLClassLoader(urls)
    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. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            this.ifModifiedSince = ifModifiedSince;
        }
    
        public long getIfModifiedSince() {
            return connection.getIfModifiedSince();
        }
    
        public boolean getDefaultUseCaches() {
            return connection.getDefaultUseCaches();
        }
    
        public void setDefaultUseCaches(boolean defaultUseCaches) {
            connection.setDefaultUseCaches(defaultUseCaches);
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
    
        @Override
        public long getIfModifiedSince () {
            return this.connection.getIfModifiedSince();
        }
    
    
        @Override
        public boolean getDefaultUseCaches () {
            return this.connection.getDefaultUseCaches();
        }
    
    
        @Override
        public void setDefaultUseCaches ( boolean defaultUseCaches ) {
            this.connection.setDefaultUseCaches(defaultUseCaches);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
Back to top