Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for isSelect (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TCresVTEtIsSameAsOp<0, 1>>]> {
      let summary = "Select operator";
    
      let description = [{
        Select values of 'x' if the corresponding value of 'condition' is true or
        the value of 'y' if false. There are valid condition input sizes:
    
        1. Either the same shape (in which case the select is elementwise), or
        2. condition must be Rank 1 and match over the first dimension.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "The ConfigMap to select from"
            },
            "prefix": {
              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
              "type": "string"
            },
            "secretRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.SecretEnvSource",
              "description": "The Secret to select from"
            }
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::string failed_custom_ops_summary =
            GetOpsSummary(failed_custom_ops_, /*summary_title=*/"Custom");
        std::string err;
        if (!failed_flex_ops_.empty())
          err +=
              "\nSome ops are not supported by the native TFLite runtime, you "
              "can "
              "enable TF kernels fallback using TF Select. See instructions: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // test select
    // CHECK-LABEL: testSelect
    func.func @testSelect(%cond : tensor<?xi1>, %arg0 : tensor<?xi32>, %arg1 : tensor<?xi32>) -> tensor<?xi32> {
      %0 = "tfl.select"(%cond, %arg0, %arg1): (tensor<?xi1>,tensor<?xi32>,tensor<?xi32>) -> tensor<?xi32>
      func.return %0 : tensor<?xi32>
    }
    
    // -----
    
    // test select with multi-dim inputs
    // CHECK-LABEL: testSelectMultiDim
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          SymbolTable::lookupSymbolIn(module, op.getSelect()));
      if (!select_func) {
        return op.emitOpError() << "has no select function specified";
      }
      auto select_func_type = select_func.getFunctionType();
      if (select_func_type.getNumInputs() != 2) {
        return op.emitOpError()
               << "expects select function to take 2 parameters, but has "
               << select_func_type.getNumInputs() << " parameter(s)";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    //
    // Here is an appropriate place to note that despite the syntactical
    // similarity to the switch statement, the case statements in a select are
    // evaluated in a pseudorandom order if there are multiple channels ready to
    // read from when the select is evaluated.  In other words, case statements
    // are evaluated in random order, and you can not assume that the case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			t.Error(err)
    			return
    		}
    		waitListCh <- l
    	}(rev + 1)
    
    	select {
    	case <-time.After(500 * time.Millisecond):
    	case l := <-waitListCh:
    		t.Fatalf("expected waiting, but get %#v", l)
    	}
    
    	if _, err := registry.Create(ctx, barPod, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); err != nil {
    		t.Fatal(err)
    	}
    
    	select {
    	case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top