Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for connection (0.18 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

            catch ( IOException ioe ) {
                throw new SmbException(ioe.getMessage(), ioe);
            }
            SmbNegotiationResponse r = this.negotiated;
            if ( r == null ) {
                throw new SmbException("Connection did not complete, failed to get negotiation response");
            }
            return r;
        }
    
    
        /**
         * @return whether this is SMB2 transport
         * @throws SmbException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                log.trace("Release session " + usage + " " + this);
            }
    
            if ( usage == 0 ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("Usage dropped to zero, release connection " + this.transport);
                }
                synchronized ( this ) {
                    if ( this.transportAcquired.compareAndSet(true, false) ) {
                        this.transport.release();
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                throw new MalformedURLException("Name must not be empty");
            }
            return name;
        }
    
    
        /**
         * @param nonPooled
         *            whether this file will use an exclusive connection
         */
        protected void setNonPooled ( boolean nonPooled ) {
            this.treeConnection.setNonPooled(nonPooled);
        }
    
    
        /**
         * @return the transportContext
         */
        @Deprecated
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top