Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for myobject (0.29 sec)

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

                        this.transport.acquire();
                    }
                }
            }
    
            return this;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#finalize()
         */
        @Override
        protected void finalize () throws Throwable {
            if ( isConnected() && this.usageCount.get() != 0 ) {
                log.warn("Session was not properly released");
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * </blockquote>
         *
         * @param obj
         *            Another <code>SmbFile</code> object to compare for equality
         * @return <code>true</code> if the two objects refer to the same SMB resource
         *         and <code>false</code> otherwise
         */
    
        @Override
        public boolean equals ( Object obj ) {
            if ( obj instanceof SmbFile ) {
                SmbResource f = (SmbResource) obj;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top