Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for urlConnection (0.2 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         */
    
        @Override
        public String toString() {
            return Strings.maskSecretValue(url.toString());
        }
    
        /* URLConnection implementation */
        /**
         * This URLConnection method just returns the result of {@code length()}.
         *
         * @return the length of this file or 0 if it refers to a directory
         */
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. 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 {@code length()}.
         *
         * @return the length of this file or 0 if it refers to a directory
         */
        @Deprecated
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        call.cancel()
        assertFailsWith<IOException> {
          call.execute()
        }
      }
    
      @Test
      fun defaultRequestProperty() {
        URLConnection.setDefaultRequestProperty("X-testSetDefaultRequestProperty", "A")
        assertThat(URLConnection.getDefaultRequestProperty("X-setDefaultRequestProperty")).isNull()
      }
    
      /**
       * Reads `count` characters from the stream. If the stream is exhausted before `count`
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top