Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for available (0.31 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            authProperty = null;
            authMethod = null;
            InputStream errorStream = connection.getErrorStream();
            if (errorStream != null && errorStream.available() != 0) {
                int count;
                byte[] buf = new byte[1024];
                while ((count = errorStream.read(buf, 0, 1024)) != -1);
            }
            String authHeader;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.authProperty = null;
            this.authMethod = null;
            try ( InputStream errorStream = this.connection.getErrorStream() ) {
                if ( errorStream != null && errorStream.available() != 0 ) {
                    byte[] buf = new byte[1024];
                    while ( ( errorStream.read(buf, 0, 1024) ) != -1 );
                }
                String authHeader;
                if ( response == HTTP_UNAUTHORIZED ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
Back to top