Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                    }
                    result = this.table.get(name);
                }
            }
            catch ( IOException fnfe ) {
                log.error("Could not read lmhosts " + tc.getConfig().getLmHostsFileName(), fnfe); //$NON-NLS-1$
            }
            return result;
        }
    
    
        void populate ( Reader r, CIFSContext tc ) throws IOException {
            String line;
            BufferedReader br = new BufferedReader(r);
    
    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/context/SingletonContext.java

                        p.load(in);
                    }
                }
    
            }
            catch ( IOException ioe ) {
                log.error("Failed to load config", ioe); //$NON-NLS-1$
            }
            p.putAll(System.getProperties());
            if ( props != null ) {
                p.putAll(props);
            }
            INSTANCE = new SingletonContext(p);
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 08:53:08 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                if ( signature[ i ] != data[ offset + SmbConstants.SIGNATURE_OFFSET + i ] ) {
                    if ( log.isDebugEnabled() ) {
                        log.debug("signature verification failure"); //$NON-NLS-1$
                        log.debug("Expect: " + Hexdump.toHexString(signature, 0, 8));
                        log.debug("Have: " + Hexdump.toHexString(data, offset + SmbConstants.SIGNATURE_OFFSET, 8));
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/KerberosTest.java

            if ( keys == null || keys.length == 0 ) {
                throw new KrbException("Could not find any keys in keytab for " + principalName); //$NON-NLS-1$
            }
    
            KrbAsReqBuilder builder = new KrbAsReqBuilder(principalName, keytab);
            Credentials creds = builder.action().getCreds();
            builder.destroy();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PACTest.java

    import org.junit.Assert;
    import org.junit.Test;
    
    import jcifs.pac.PACDecodingException;
    import jcifs.pac.PacMac;
    import jcifs.util.Hexdump;
    
    
    /**
     * @author mbechler
     *
     */
    @SuppressWarnings ( {
        "nls", "javadoc", "restriction"
    } )
    public class PACTest {
    
        @Test
        public void testNFold () {
            // rfc3961 test vectors
            verifyNfold(64, "012345", "be072631276b1955");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

                            log.debug("Timeout connecting", ex0);
                        }
                        else if ( ex0 != null ) {
                            log.warn("Exception in transport thread", ex0); //$NON-NLS-1$
                        }
                        return;
                    }
    
                    if ( ex0 instanceof SocketTimeoutException ) {
                        this.te = new ConnectionTimeoutException(ex0);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
Back to top