Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Breiding (0.16 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

    import java.util.Properties;
    
    import jcifs.CIFSException;
    import jcifs.Config;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.SmbConstants;
    
    
    /**
     * Configuration implementation reading the classic jcifs settings from properties
     * 
     * @author mbechler
     *
     */
    public final class PropertyConfiguration extends BaseConfiguration implements Configuration {
    
        /**
         * @param p
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

            length = 0;
            do
            {
                int octet = s.read();
                if (octet < 0)
                {
                    throw new EOFException("EOF found reading length");
                }
    
                if ((length >>> 23) != 0)
                {
                    throw new IOException("long form definite-length more than 31 bits");
                }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top