Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            super.init(config);
    
            /* Set jcifs.smb1 properties we know we want; soTimeout and cachePolicy to 10min.
             */
            Config.setProperty( "jcifs.smb1.smb.client.soTimeout", "300000" );
            Config.setProperty( "jcifs.smb1.netbios.cachePolicy", "600" );
    
            Enumeration e = config.getInitParameterNames();
            String name;
            while (e.hasMoreElements()) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmServlet.java

            p.putAll(System.getProperties());
            /*
             * Set jcifs properties we know we want; soTimeout and cachePolicy to 10min.
             */
            p.setProperty("jcifs.smb.client.soTimeout", "300000");
            p.setProperty("jcifs.netbios.cachePolicy", "600");
    
            Enumeration<String> e = config.getInitParameterNames();
            String name;
            while ( e.hasMoreElements() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
Back to top