Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for ioperation (0.2 sec)

  1. fastapi/applications.py

                Doc(
                    """
                    Custom operation ID to be used by this *path operation*.
    
                    By default, it is generated automatically.
    
                    If you provide a custom operation ID, you need to make sure it is
                    unique for the whole API.
    
                    You can customize the
                    operation ID generation with the parameter
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

                Doc(
                    """
                    Custom operation ID to be used by this *path operation*.
    
                    By default, it is generated automatically.
    
                    If you provide a custom operation ID, you need to make sure it is
                    unique for the whole API.
    
                    You can customize the
                    operation ID generation with the parameter
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def TensorListOpsDecompositionPass : Pass<"tf-tensor-list-ops-decomposition", "ModuleOp"> {
      let summary = "Decomposes TensorList operations into generic operations on tensors.";
    
      let description = [{
    This pass rewrites TensorList operations into generic and non-mutating
    operations on tensors. This results in operations that can be legalized to XLA.
    
    The list is converted to a single large tensor that includes all list elements,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // region that would not be isolated.
      for (int iteration = 0; iteration < max_iterations && changed; ++iteration) {
        changed = false;
        LLVM_DEBUG(llvm::dbgs()
                   << "Shape inference, iteration " << iteration << "\n");
        auto res = region->walk([&](Operation* op) {
          auto abstract_op = op->getRegisteredInfo();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation_test.go

    				},
    			},
    		},
    		expectedError: `spec.matchConstraints.resourceRules[0].operations: Required value, spec.matchConstraints.resourceRules[1].operations: Required value, spec.matchConstraints.excludeResourceRules[0].operations: Required value, spec.matchConstraints.excludeResourceRules[1].operations: Required value`,
    	}, {
    		name: "\"\" is NOT a valid operation",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	tests := []struct {
    		name       string
    		operations []operation
    		want       string
    	}{
    		{
    			name: "add pods to activeQ",
    			operations: []operation{
    				add,
    			},
    			want: `
                scheduler_queue_incoming_pods_total{event="PodAdd",queue="active"} 3
    `,
    		},
    		{
    			name: "add pods to unschedulablePods",
    			operations: []operation{
    				popAndRequeueAsUnschedulable,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    the corresponding iteration value will not be produced. If a map entry is
    created during iteration, that entry may be produced during the iteration or
    may be skipped. The choice may vary for each entry created and from one
    iteration to the next.
    If the map is <code>nil</code>, the number of iterations is 0.
    </li>
    
    <li>
    For channels, the iteration values produced are the successive values sent on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      // When generating the FlatBuffer output some operations have
      // Options (as defined in the schema). These options are effectively
      // the attributes of the operations (e.g., what padding is to be used
      // for a pooling operator). Not all operations have Options and some
      // operations share Options. The following attributes indicate whether
      // the operation has Options in the serialized FlatBuffer.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      auto loc = op.getLoc();
    
      // First unpack user must be coeff-wise unary operation.
      Operation *first_user = *op->getUsers().begin();
      if (!first_user->hasTrait<OpTrait::TF::CwiseUnary>()) return failure();
    
      // All unpack users must be defined by the op of same kind.
      bool users_same_op = llvm::all_of(op->getUsers(), [&](Operation *user) {
        return user->getName() == first_user->getName();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * An object that holds the final result of an asynchronous {@link ClosingFuture} operation and
       * allows the user to close all the closeable objects that were captured during it for later
       * closing.
       *
       * <p>The asynchronous operation will have completed before this object is created.
       *
       * @param <V> the type of the value of a successful operation
       * @see ClosingFuture#finishToValueAndCloser(ValueAndCloserConsumer, Executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top