Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for pselect (0.17 sec)

  1. src/net/http/serve_test.go

    		ctx := r.Context()
    		select {
    		case <-ctx.Done():
    			t.Error("should not be Done in ServeHTTP")
    		default:
    		}
    		ctxc <- ctx
    	}))
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	res.Body.Close()
    	ctx := <-ctxc
    	select {
    	case <-ctx.Done():
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	case OpRsh8x32:
    		return rewriteValueMIPS_OpRsh8x32(v)
    	case OpRsh8x64:
    		return rewriteValueMIPS_OpRsh8x64(v)
    	case OpRsh8x8:
    		return rewriteValueMIPS_OpRsh8x8(v)
    	case OpSelect0:
    		return rewriteValueMIPS_OpSelect0(v)
    	case OpSelect1:
    		return rewriteValueMIPS_OpSelect1(v)
    	case OpSignExt16to32:
    		v.Op = OpMIPSMOVHreg
    		return true
    	case OpSignExt8to16:
    		v.Op = OpMIPSMOVBreg
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // -----
    
    // Tests that a quantized `stablehlo.select` is converted to `tfl.select_v2`.
    
    func.func @select(
        %arg0: tensor<1x3xi1>,
        %arg1: tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        %arg2: tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = "stablehlo.select"(%arg0, %arg1, %arg2) : (
        tensor<1x3xi1>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    			// Wait for pod to succeed or fail scheduling
    			select {
    			case <-eventChan:
    			case <-time.After(wait.ForeverTestTimeout):
    				t.Fatalf("scheduling timeout after %v", wait.ForeverTestTimeout)
    			}
    			stopFunc()
    			// Wait for scheduling to return an error or succeed binding.
    			var (
    				gotErr  error
    				gotBind *v1.Binding
    			)
    			select {
    			case gotErr = <-errChan:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    //===--------------------------------------------------------------------===//
    //  tf.Select
    //===--------------------------------------------------------------------===//
    
    // Test valid tf.Select
    // CHECK-LABEL: func @testSelect
    func.func @testSelect(%arg0: tensor<3xi1>, %arg1: tensor<3x2xf16>, %arg2: tensor<3x2xf16>) -> tensor<3x2xf16> {
      %0 = "tf.Select"(%arg0, %arg1, %arg2) : (tensor<3xi1>, tensor<3x2xf16>, tensor<3x2xf16>) -> tensor<3x2xf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		}
    	}()
    
    	// Wait for the first request to receive a response and return the
    	// connection to the idle pool.
    	select {
    	case err := <-reqerrc:
    		t.Fatalf("request 1: got err %v, want nil", err)
    	case r1c := <-reqc:
    		close(r1c)
    	}
    	var idlec chan struct{}
    	select {
    	case err := <-reqerrc:
    		t.Fatalf("request 1: got err %v, want nil", err)
    	case idlec = <-putidlec:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/webcomponents.min.js

    t(e){n.call(this,e)}var n=e.wrappers.HTMLElement,r=e.mixin,o=e.registerWrapper,i=window.HTMLContentElement;t.prototype=Object.create(n.prototype),r(t.prototype,{constructor:t,get select(){return this.getAttribute("select")},set select(e){this.setAttribute("select",e)},setAttribute:function(e,t){n.prototype.setAttribute.call(this,e,t),"select"===String(e).toLowerCase()&&this.invalidateShadowRenderer(!0)}}),i&&o(i,t),e.wrappers.HTMLContentElement=t}(window.ShadowDOMPolyfill),function(e){"use strict";function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  return
    }
    
    func.func @select(%arg0: tensor<8xi1>, %arg1: tensor<8xf32>, %arg2: tensor<8xf32>) -> tensor<8xf32> {
      %0 = "tf.Select"(%arg0, %arg1, %arg2) : (tensor<8xi1>, tensor<8xf32>, tensor<8xf32>) -> tensor<8xf32>
      func.return %0: tensor<8xf32>
    
    // CHECK-LABEL: select
    // CHECK:  "tfl.select"(%arg0, %arg1, %arg2)
    // CHECK:  return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    	    statement</a>.</li>
    	</ul>
    </li>
    
    <li>
    	A <a href="#Select_statements">"select" statement</a> in which:
    	<ul>
    	<li>there are no "break" statements referring to the "select" statement, and</li>
    	<li>the statement lists in each case, including the default if present,
    	    end in a terminating statement.</li>
    	</ul>
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/encoding/json/testdata/code.json.gz

    e":"text-align-06-b-expected.checksum","kids":[],"cl_weight":0.0020117049938618995,"touches":3,"min_t":1228948796,"max_t":1236205616,"mean_t":1231542986},{"name":"text-tselect-01-b-expected.png","kids":[],"cl_weight":0.0020117049938618995,"touches":3,"min_t":1228948796,"max_t":1236205616,"mean_t":1231542986},{"name":"text-tselect-01-b-expected.checksum","kids":[],"cl_weight":0.0020117049938618995,"touches":3,"min_t":1228948796,"max_t":1236205616,"mean_t":1231542986},{"name":"text-ws-02-t-expecte...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top