Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gotch (0.08 sec)

  1. src/net/http/clientserver_test.go

    	}
    }
    
    func TestConnectRequest(t *testing.T) { run(t, testConnectRequest) }
    func testConnectRequest(t *testing.T, mode testMode) {
    	gotc := make(chan *Request, 1)
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		gotc <- r
    	}))
    
    	u, err := url.Parse(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	tests := []struct {
    		req  *Request
    		want string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        return localRouteSelector.hasNext()
      }
    
      /**
       * Return the route from [connection] if it should be retried, even if the connection itself is
       * unhealthy. The biggest gotcha here is that we shouldn't reuse routes from coalesced
       * connections.
       */
      private fun retryRoute(connection: RealConnection): Route? {
        return connection.withLock {
          when {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (1)
  3. src/cmd/internal/obj/x86/asm6.go

    	{AFCMOVU, yfcmv, Px, opBytes{0xda, 03}},
    	{AFCMOVUN, yfcmv, Px, opBytes{0xda, 03}},
    	{AFCOMD, yfadd, Px, opBytes{0xdc, 02, 0xd8, 02, 0xdc, 02}},  // botch
    	{AFCOMDP, yfadd, Px, opBytes{0xdc, 03, 0xd8, 03, 0xdc, 03}}, // botch
    	{AFCOMDPP, ycompp, Px, opBytes{0xde, 03}},
    	{AFCOMF, yfmvx, Px, opBytes{0xd8, 02}},
    	{AFCOMFP, yfmvx, Px, opBytes{0xd8, 03}},
    	{AFCOMI, yfcmv, Px, opBytes{0xdb, 06}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top