Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/smb1/UniAddress.java

                    while( sem.count > 0 && q1x.ans == null && q20.ans == null ) {
                        sem.wait();
                    }
                }
            } catch( InterruptedException ie ) {
                throw new UnknownHostException( name );
            }
            if( q1x.ans != null ) {
                return q1x.ans;
            } else if( q20.ans != null ) {
                return q20.ans;
            } else {
                throw q1x.uhe;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    case RESOLVER_LMHOSTS:
                        NbtAddress ans = this.lmhosts.getByName(name, this.transportContext);
                        if ( ans != null ) {
                            ans.hostName.srcHashCode = 0; // just has to be different
                                                          // from other methods
                            return ans;
                        }
                        break;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                        case RESOLVER_LMHOSTS:
                            NbtAddress ans = Lmhosts.getByName( name );
                            if( ans != null ) {
                                ans.hostName.srcHashCode = 0; // just has to be different
                                                              // from other methods
                                return ans;
                            }
                            break;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
Back to top