Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Initializing (0.24 sec)

  1. src/main/java/jcifs/context/SingletonContext.java

         * @return a global context, initialized on first call
         */
        public static synchronized final SingletonContext getInstance () {
            if ( INSTANCE == null ) {
                try {
                    log.debug("Initializing singleton context");
                    init(null);
                }
                catch ( CIFSException e ) {
                    log.error("Failed to create singleton JCIFS context", e);
                }
            }
    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)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                            }
                            this.sessionKey = signingKey;
                        }
                        else {
                            log.trace("Not yet initializing signing");
                        }
    
                        response = new SmbComSessionSetupAndXResponse(getContext().getConfig(), null);
                        response.setExtendedSecurity(true);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top