Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for ret2 (0.07 sec)

  1. 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)
  2. 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)
  3. src/runtime/mbitmap.go

    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			srcx := (*uintptr)(unsafe.Pointer(src + (addr - dst)))
    			p := buf.get2()
    			p[0] = *dstx
    			p[1] = *srcx
    		}
    	}
    }
    
    // bulkBarrierPreWriteSrcOnly is like bulkBarrierPreWrite but
    // does not execute write barriers for [dst, dst+size).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K 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)
  5. src/cmd/cgo/internal/test/test.go

    	// all three should be considered identical to `long`
    	if ret := C.takes_long(longVar); ret != 9 {
    		t.Errorf("got %v but expected %v", ret, 9)
    	}
    	if ret := C.takes_long(typedefVar); ret != 16 {
    		t.Errorf("got %v but expected %v", ret, 16)
    	}
    	if ret := C.takes_long(typedefTypedefVar); ret != 25 {
    		t.Errorf("got %v but expected %v", ret, 25)
    	}
    
    	// They should also be identical to the typedef'd type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: %[[init2:.*]] = mhlo.constant dense<-0.000000e+00> : tensor<f32>
      // CHECK-NEXT: %[[red2:.*]] = mhlo.reduce(%[[cgrad]] init: %[[init2]]) applies mhlo.add across dimensions = [0, 1, 2] : (tensor<8x8x8x8xf32>, tensor<f32>) -> tensor<8xf32>
      // CHECK-NEXT: %[[offset_backprop:.*]] = mhlo.convert %[[red2]] : tensor<8xf32>
    
      // CHECK-NEXT: %[[x_backprop:.*]] = mhlo.convert %[[mul3]] : tensor<8x8x8x8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/x86/ssa.go

    		// Should we use the 3-byte TESTB $0, (reg) instead? It is larger
    		// but it doesn't have false dependency on AX.
    		// Or maybe allocate an output register and use MOVL (reg),reg2 ?
    		// That trades clobbering flags for clobbering a register.
    		p := s.Prog(x86.ATESTB)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = x86.REG_AX
    		p.To.Type = obj.TYPE_MEM
    		p.To.Reg = v.Args[0].Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    		},
    		{
    			name: "more-complex",
    			json: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    					"req1": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key1:val1)%"}},
    					"req2": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key2:val1)%"}},
    					"key1": {Kind: &structpb.Value_StringValue{StringValue: "%METADATA(CLUSTER:istio)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/parse.go

    			}
    			a.Type = obj.TYPE_REG
    			a.Reg = r1
    			if r2 != 0 {
    				// Form is R1:R2. It is on RHS and the second register
    				// needs to go into the LHS.
    				panic("cannot happen (Addr.Reg2)")
    			}
    		}
    		// fmt.Printf("REG %s\n", obj.Dconv(&emptyProg, 0, a))
    		p.expectOperandEnd()
    		return
    	}
    
    	// Constant.
    	haveConstant := false
    	switch tok.ScanToken {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		p0.To.Reg = ppc64.REGTMP
    		// If it is a Compare-and-Swap-Release operation, set the EH field with
    		// the release hint.
    		if v.AuxInt == 0 {
    			p0.AddRestSourceConst(0)
    		}
    		// CMP reg1,reg2
    		p1 := s.Prog(cmp)
    		p1.From.Type = obj.TYPE_REG
    		p1.From.Reg = r1
    		p1.To.Reg = ppc64.REGTMP
    		p1.To.Type = obj.TYPE_REG
    		// BNE done with return value = false
    		p2 := s.Prog(ppc64.ABNE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top