Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gotch (0.03 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/mips/obj0.go

    		AMULF,
    		AMULD,
    		AMULW,
    		ADIVF,
    		ADIVD,
    		ADIVW:
    		if p.Reg == 0 {
    			if p.To.Type == obj.TYPE_REG {
    				p.Reg = p.To.Reg
    			}
    			//if(p->reg == NREG)
    			//	print("botch %P\n", p);
    		}
    	}
    
    	/*
    	 * flags based on 'to' field
    	 */
    	cls := int(p.To.Class)
    	if cls == 0 {
    		cls = c.aclass(&p.To) + 1
    		p.To.Class = int8(cls)
    	}
    	cls--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top