Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/smb1/netbios/Name.java

        }
    
        public int hashCode() {
            int result;
    
            result = name.hashCode();
            result += 65599 * hexCode;
            result += 65599 * srcHashCode; /* hashCode is different depending
                                            * on where it came from
                                            */
            if( scope != null && scope.length() != 0 ) {
                result += scope.hashCode();
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/Name.java

            int result;
    
            result = this.name.hashCode();
            result += 65599 * this.hexCode;
            result += 65599 * this.srcHashCode; /*
                                                 * hashCode is different depending
                                                 * on where it came from
                                                 */
            if ( this.scope != null && this.scope.length() != 0 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
Back to top