Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 251 for onStop (0.1 sec)

  1. pkg/controller/tainteviction/taint_eviction_test.go

    			enablePodDisruptionConditions: true,
    		},
    		{
    			description: "scheduling onto tainted Node",
    			prevPod:     testutil.NewPod("pod1", ""),
    			newPod:      testutil.NewPod("pod1", "node1"),
    			taintedNodes: map[string][]corev1.Taint{
    				"node1": {createNoExecuteTaint(1)},
    			},
    			expectDelete: true,
    		},
    		{
    			description: "scheduling onto tainted Node with toleration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +k8s:conversion-gen=false
      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
      // the scheduler simply schedules this carp onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        if (fold_results.size() != 1 ||
            !llvm::isa<TF::ConstOp>(fold_results[0].getDefiningOp())) {
          return absl::InternalError("Failed to evaluate TF ops");
        }
    
        // Convert output tensor back to xla::Literal.
        tensorflow::Tensor tensor;
        TF_RETURN_IF_ERROR(tensorflow::ConvertToTensor(
            llvm::dyn_cast<TF::ConstOp>(fold_results[0].getDefiningOp()).getValue(),
            &tensor));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  4. src/internal/coverage/rtcov/rtcov.go

    // the init function for a coverage-instrumented package executes, it
    // will make a call into the runtime which will create a covMetaBlob
    // object for the package and chain it onto a global list.
    type CovMetaBlob struct {
    	P                  *byte
    	Len                uint32
    	Hash               [16]byte
    	PkgPath            string
    	PkgID              int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // +k8s:conversion-gen=false
      // +optional
      optional string serviceAccount = 9;
    
      // 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.
      // +optional
      optional string nodeName = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      if (!tensor_attr_or.ok()) return nullptr;
      return tensor_attr_or.value();
    }
    
    // Creates a constant op that holds 'tensor_elements'.
    TF::ConstOp GetConstOpFromElementsAttr(ElementsAttr tensor_elements,
                                           OpBuilder builder, Location loc) {
      return builder.create<TF::ConstOp>(loc, tensor_elements);
    }
    
    // Returns ElementsAttr which has the value held by 'resource_tensor'.
    ElementsAttr GetTensorValueAsElementsAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

        int cY = rhs_shape.size() - 2;
        if (bmm_op.getAdjX()) {
          rY = rhs_shape.size() - 2;
          cY = rhs_shape.size() - 1;
        }
    
        auto reduce_dim_op = rewriter.create<TFL::ConstOp>(
            bmm_op->getLoc(),
            DenseIntElementsAttr::get(
                RankedTensorType::get({1}, rewriter.getI32Type()), {cY}));
        auto sum_op = rewriter.create<TFL::SumOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/BUILD

            "//tensorflow/python/eager:backprop",
            "//tensorflow/python/framework:test_lib",
            "//tensorflow/python/platform:client_testlib",
        ],
    )
    
    gen_op_libraries(
        name = "one_op",
        src = "define_op_template.py",
        deps = [
            "//tensorflow/python/platform:flags",
            "@absl_py//absl:app",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +k8s:conversion-gen=false
      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
      // the scheduler simply schedules this carp onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device_context.cc

      if (!status.ok()) {
        done(status);
        return;
      }
    
      // Create a reference to hold onto cpu_tensor until after the literal has
      // been transferred
      TensorReference ref(*cpu_tensor);
      if (UseMultipleStreams()) {
        // Unref the host tensor when the transfer completes.
        // We don't defer the call to done() onto the stream here, and the reasons
        // why this is correct are subtle. We assume that:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top