Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for onStop (0.25 sec)

  1. okhttp-android/src/main/baseline-prof.txt

    PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V
    PLandroidx/lifecycle/ReportFragment;->onDestroy()V
    PLandroidx/lifecycle/ReportFragment;->onPause()V
    PLandroidx/lifecycle/ReportFragment;->onStop()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        auto begin = rewriter.create<TF::ConstOp>(slice_op.getLoc(),
                                                  slice_op.getStartIndices());
        auto end = rewriter.create<TF::ConstOp>(slice_op.getLoc(),
                                                slice_op.getLimitIndices());
        auto strides =
            rewriter.create<TF::ConstOp>(slice_op.getLoc(), slice_op.getStrides());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          auto mul_rhs = ExpandTo4DForConv(gamma_cst);
          broadcasted_gamma = rewriter.create<ConstOp>(loc, mul_rhs);
        } else if (isa<TFL::DepthwiseConv2DOp>(mul_op_lhs)) {
          auto mul_rhs = ExpandTo4DForDepthwiseConv(gamma_cst);
          broadcasted_gamma = rewriter.create<ConstOp>(loc, mul_rhs);
        } else {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    }
    
    //===----------------------------------------------------------------------===//
    // ConstOp
    //===----------------------------------------------------------------------===//
    
    void ConstOp::getAsmResultNames(
        function_ref<void(Value, StringRef)> setNameFn) {
      setNameFn(getResult(), "cst");
    }
    
    OpFoldResult ConstOp::fold(FoldAdaptor adaptor) {
      assert(adaptor.getOperands().empty() && "constant has no operands");
    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. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // ConstOp
    //===----------------------------------------------------------------------===//
    
    OpFoldResult ConstOp::fold(FoldAdaptor adaptor) {
      auto operands = adaptor.getOperands();
      (void)operands;
      assert(operands.empty() && "constant has no operands");
      // Return the held attribute value.
      return getValue();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          slice_op.getShrinkAxisMask() != 1)
        return {};
    
      // Returns a value if the `value` is defined by a ConstOp with a single
      // integer element in it and has an expected rank.
      auto get_const_int = [](Value value,
                              int expected_rank) -> std::optional<int64_t> {
        auto const_op = dyn_cast_or_null<ConstOp>(value.getDefiningOp());
        if (!const_op) return std::nullopt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      return Status(absl::StatusCode::kInvalidArgument, "Unsupported type");
    }
    
    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);
    }
    
    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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "x-kubernetes-patch-strategy": "merge"
            },
            "nodeName": {
              "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
              "type": "string"
            },
            "nodeSelector": {
              "additionalProperties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      OpBuilder builder(&func.front().front());
      for (auto arg : func.getArguments()) {
        Value operand = op.getOperand(arg.getArgNumber());
        if (isa_and_nonnull<TF::ConstOp>(operand.getDefiningOp())) {
          xla_recv_at_host_op.getResult(arg.getArgNumber())
              .replaceAllUsesWith(
                  builder.clone(*operand.getDefiningOp())->getResult(0));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    		}
    		err = manager.dsStore.Add(ds)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expectSyncDaemonSets(t, manager, ds, podControl, 1, 0, 0)
    	}
    }
    
    // DaemonSets should place onto NotReady nodes
    func TestNotReadyNodeDaemonDoesLaunchPod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top