Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initialize (0.15 sec)

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

         * 
         */
        protected BaseConfiguration () throws CIFSException {
            this(false);
        }
    
    
        /**
         * 
         * @param initDefaults
         *            whether to initialize defaults based on other settings
         * @throws CIFSException
         */
        public BaseConfiguration ( boolean initDefaults ) throws CIFSException {
            if ( initDefaults ) {
                this.initDefaults();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  2. src/test/java/jcifs/tests/EnumTest.java

                public List<ResolverType> getResolveOrder () {
                    return Arrays.asList(ResolverType.RESOLVER_WINS);
                }
            });
    
            // need to override NameServiceClient as it otherwise gets initialized with the original config
            final NameServiceClientImpl nsc = new NameServiceClientImpl(ctx);
            ctx = new CIFSContextWrapper(ctx) {
    
                @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                    this.in.close();
                    this.socket.close();
                    log.trace("Socket closed");
                }
                else {
                    log.trace("Not yet initialized");
                }
            }
            catch ( Exception e ) {
                log.debug("Exception in disconnect", e);
            }
            finally {
                this.socket = null;
                this.digest = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top