Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cdef (0.14 sec)

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

            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getHeaderFieldInt(header, def);
        }
    
        public long getHeaderFieldDate(String header, long def) {
            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getHeaderFieldDate(header, def);
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Config.java

        /**
         * Retrieve a boolean value. If the property is not found, the value of <code>def</code> is returned.
         */
        public static boolean getBoolean ( Properties props, String key, boolean def ) {
            String b = props.getProperty(key);
            if ( b != null ) {
                def = b.toLowerCase().equals("true");
            }
            return def;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MimeMap.java

        }
    
        public String getMimeType( String extension ) throws IOException {
            return getMimeType( extension, "application/octet-stream" );
        }
        public String getMimeType( String extension, String def ) throws IOException {
            int state, t, x, i, off;
            byte ch;
            byte[] type = new byte[128];
            byte[] buf = new byte[16];
            byte[] ext = extension.toLowerCase().getBytes( "ASCII" );
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
    
        @Override
        public int getHeaderFieldInt ( String header, int def ) {
            handshake();
            return this.connection.getHeaderFieldInt(header, def);
        }
    
    
        @Override
        public long getHeaderFieldDate ( String header, long def ) {
            handshake();
            return this.connection.getHeaderFieldDate(header, def);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/mime.map

    application/x-javascript       js               # Javascript
    application/x-latex            latex            # Latex File
    application/x-mif              mif              #
    application/x-netcdf           nc cdf           #
    #application/x-sh               sh               # sh Shell Program
    application/x-shar             shar             #
    application/x-shockwave-flash  swf              # Macromedia Shockwave file
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/Config.java

        /**
         * Retrieve a boolean value. If the property is not found, the value of <code>def</code> is returned.
         */
    
        public static boolean getBoolean( String key, boolean def ) {
            String b = getProperty( key );
            if( b != null ) {
                def = b.toLowerCase().equals( "true" );
            }
            return def;
        }
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
Back to top