Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for ioperation (0.17 sec)

  1. 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)
  2. android/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: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

        return {nullptr, -1};
      }
    
      return {ToOperation(edge->src()), edge->src_output()};
    }
    
    void TF_OperationAllInputs(TF_Operation* oper, TF_Output* inputs,
                               int max_inputs) {
      for (auto* edge : oper->node.in_edges()) {
        if (edge->dst_input() >= 0 && edge->dst_input() < max_inputs) {
          inputs[edge->dst_input()] = {ToOperation(edge->src()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    }
    
    static LogicalResult VerifyCaseOpBase(Operation* op, Value branch_index) {
      if (!IsOfRankOrUnranked(branch_index, 0))
        return op->emitOpError()
               << "expects 'branch_index' to be a scalar, but got "
               << branch_index.getType();
      return success();
    }
    
    static LogicalResult VerifyCaseOrIfOpBranchFunctions(
        SymbolTableCollection& symbol_table, Operation* op,
        ArrayRef<Attribute> branches,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

              },
              "manager": {
                "description": "Manager is an identifier of the workflow managing these fields.",
                "type": "string"
              },
              "operation": {
                "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
                "type": "string"
              },
              "subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Analysis Hooks
      //===--------------------------------------------------------------------===//
    
      // Allow all call operations to be inlined.
      bool isLegalToInline(Operation* call, Operation* callable,
                           bool wouldBeCloned) const final {
        return true;
      }
      bool isLegalToInline(Operation* op, Region* dest, bool wouldBeCloned,
                           IRMapping&) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    }
    
    static bool IsConst(Operation* op) {
      return isa<mlir::func::ConstantOp, mlir::arith::ConstantOp, mlir::TF::ConstOp,
                 tfl::ConstOp, tfl::QConstOp, tfl::SparseConstOp,
                 tfl::SparseQConstOp, mlir::TFL::NoValueOp,
                 mlir::stablehlo::ConstantOp, mlir::vhlo::ConstantOpV1>(op);
    }
    
    static bool IsTFResourceOp(Operation* op) {
      for (const auto& operand : op->getOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    									Principals: []string{"sa2"},
    								},
    							},
    						},
    						To: []*security_beta.Rule_To{
    							{
    								Operation: &security_beta.Operation{
    									Methods: []string{"GET"},
    								},
    							},
    							{
    								Operation: &security_beta.Operation{
    									Methods: []string{"POST"},
    								},
    							},
    						},
    						When: []*security_beta.Condition{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      Block& comparator_blk = comparator.front();
      using OpListType = llvm::iplist<Operation>;
      OpListType& operations = comparator_blk.getOperations();
      if (operations.size() != 2) return false;
      auto compare_op = dyn_cast_or_null<mhlo::CompareOp>(&operations.front());
      auto return_op = dyn_cast_or_null<ReturnOpType>(&operations.back());
      if (!compare_op || !return_op) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      return filter_scale * input_scale;
    }
    
    // Returns the optionally broadcasted bias constant op used for a given op.
    // If no such constant op exists, returns a nullptr.
    Operation* GetBiasConstOp(Operation* op) {
      Operation* bias_const_op;
      if (Operation* broadcast_in_dim_op =
              FindOperandOfType<stablehlo::BroadcastInDimOp>(op);
          broadcast_in_dim_op != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top