Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ret2 (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK-NEXT: %[[RES2:.*]] = "tf.MulNoNan"(%[[ARG0]], %[[CON2]]) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      // CHECK-NEXT: return %[[RES1]], %[[RES2]], %[[CON3]] : tensor<2xf32>, tensor<2xf32>, tensor<2xf32>
      %con1 = "tf.Const"() { value = dense<[1.0, 2.0]> : tensor<2xf32> } : () -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	go doReq("req1")
    	<-preDial
    	<-dialStarted
    
    	// get req2 to waiting on conns per host to go down below max
    	go doReq("req2")
    	<-preDial
    	select {
    	case <-dialStarted:
    		t.Error("req2 dial started while req1 dial in progress")
    		return
    	default:
    	}
    
    	// let req1 complete
    	stallDial <- struct{}{}
    	<-reqComplete
    
    	// let req2 complete
    	<-dialStarted
    	stallDial <- struct{}{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(get1.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
        assertThat(get1.headers["Proxy-Authorization"]).isNull()
        val get2 = server.takeRequest()
        assertThat(get2.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
        assertThat(get2.headers["Proxy-Authorization"]).isEqualTo("password")
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    		var proxy *clientServerTest
    		proxy = newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    			req2, _ := NewRequest("POST", backend.ts.URL, req.Body)
    			req2.ContentLength = bodySize
    			cancel := make(chan struct{})
    			req2.Cancel = cancel
    
    			bresp, err := proxy.c.Do(req2)
    			if err != nil {
    				t.Errorf("Proxy outbound request: %v", err)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top