Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 1L (0.16 sec)

  1. src/main/java/jcifs/netbios/Lmhosts.java

    /**
     * 
     *
     */
    public class Lmhosts {
    
        private static final Logger log = LoggerFactory.getLogger(Lmhosts.class);
    
        private final Map<Name, NbtAddress> table = new HashMap<>();
        private long lastModified = 1L;
        private int alt;
    
    
        /**
         * This is really just for {@link jcifs.netbios.UniAddress}. It does
         * not throw an {@link java.net.UnknownHostException} because this
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PACDecodingException.java

     */
    package jcifs.pac;
    
    
    import jcifs.CIFSException;
    
    
    @SuppressWarnings ( "javadoc" )
    public class PACDecodingException extends CIFSException {
    
        private static final long serialVersionUID = 1L;
    
    
        public PACDecodingException () {
            this(null, null);
        }
    
    
        public PACDecodingException ( String message ) {
            this(message, null);
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/Lmhosts.java

    public class Lmhosts {
    
        private static final String FILENAME = Config.getProperty( "jcifs.smb1.netbios.lmhosts" );
        private static final Hashtable TAB = new Hashtable();
        private static long lastModified = 1L;
        private static int alt;
        private static LogStream log = LogStream.getInstance();
    
        /**
         * This is really just for {@link jcifs.smb1.UniAddress}. It does
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.8K bytes
    - Viewed (0)
Back to top