Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for hitHost (0.13 sec)

  1. src/net/http/transport_test.go

    		return []net.IPAddr{{IP: net.ParseIP(ip)}}, nil
    	})
    
    	hitHost := func(n int) {
    		req, _ := NewRequest("GET", fmt.Sprintf("http://host-%d.dns-is-faked.golang:"+port, n), nil)
    		req = req.WithContext(ctx)
    		res, err := c.Do(req)
    		if err != nil {
    			t.Fatal(err)
    		}
    		res.Body.Close()
    	}
    	for i := 0; i < 4; i++ {
    		hitHost(i)
    	}
    	want := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                    if( b > 0xFF ) {
                        return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
                    }
                    IP = ( IP << 8 ) + b;
                    hitDots++;
                }
                if( hitDots != 4 || host.endsWith( "." )) {
                    return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
                }
                return new NbtAddress( UNKNOWN_NAME, IP, false, B_NODE );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    c = data[ i ];
                }
                if ( b > 0xFF ) {
                    return doNameQuery(name, svr);
                }
                IP = ( IP << 8 ) + b;
                hitDots++;
            }
            if ( hitDots != 4 || host.endsWith(".") ) {
                return doNameQuery(name, svr);
            }
            return new NbtAddress(getUnknownName(), IP, false, NbtAddress.B_NODE);
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  4. docs/en/data/people.yml

      avatarUrl: https://avatars.githubusercontent.com/u/39375566?u=260ad6b1a4b34c07dbfa728da5e586f16f6d1824&v=4
      url: https://github.com/komtaki
    - login: hitrust
      count: 4
      avatarUrl: https://avatars.githubusercontent.com/u/3360631?u=5fa1f475ad784d64eb9666bdd43cc4d285dcc773&v=4
      url: https://github.com/hitrust
    - login: JulianMaurin
      count: 4
      avatarUrl: https://avatars.githubusercontent.com/u/63545168?u=b7d15ac865268cbefc2d739e2f23d9aeeac1a622&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 📝 Fix example code with sets in Tutorial - Body - Nested Models 2. PR [#2053](https://github.com/tiangolo/fastapi/pull/2053) by [@hitrust](https://github.com/hitrust).
    * 📝 Fix example code with sets in Tutorial - Body - Nested Models. PR [#2052](https://github.com/tiangolo/fastapi/pull/2052) by [@hitrust](https://github.com/hitrust).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function findLowIndexInSortedArray(ary,mapFn,loVal){if(ary.length===0)return 1;let low=0;let high=ary.length-1;let i;let comparison;let hitPos=-1;while(low<=high){i=Math.floor((low+high)/2);comparison=mapFn(ary[i])-loVal;if(comparison<0){low=i+1;continue;}else if(comparison>0){high=i-1;continue;}else{hitPos=i;high=i-1;}}
    return hitPos!==-1?hitPos:low;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top