Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 322 for onStop (0.4 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiationScheme.java

            }
    
            @Override
            public <T> T newInstance(Class<T> implType, Class<? super T> baseClass) {
                // TODO - The baseClass can be inferred from the implType, so attach the serialization constructor onto the GeneratedClass rather than parameterizing and caching here
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

     * Read for instance http://docs.codehaus.org/display/MAVEN/Deterministic+Lifecycle+Planning
     * </p>
     * <p>
     * In their current implementation they are "bolted" onto the lifecycle by separating them
     * into TaskSegments. This class represents the execution context of one such task segment.
     * </p>
     * <p>
     * Wise voices have suggested that maybe aggregators shouldn't be bound to the ordinary
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/asm/internal/lex/input.go

    	"text/scanner"
    
    	"cmd/asm/internal/flags"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    // Input is the main input: a stack of readers and some macro definitions.
    // It also handles #include processing (by pushing onto the input stack)
    // and parses and instantiates macro definitions.
    type Input struct {
    	Stack
    	includes        []string
    	beginningOfLine bool
    	ifdefStack      []bool
    	macros          map[string]*Macro
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// +optional
    	DeprecatedServiceAccount string `json:"serviceAccount,omitempty" protobuf:"bytes,9,opt,name=serviceAccount"`
    
    	// 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
    	NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

         * <id>some-snap-repo</id>
         * <url>scp://host/snapshot-path</url>
         * </snapshotRepository>
         * </distributionManagement>
         * ]]></origin>
         * <usage><![CDATA[
         * The repositories onto which artifacts should be deployed.
         * One is for releases, the other for snapshots.
         * ]]></usage>
         * </expression>
         * <expressions>
         *
         * @throws IOException
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. 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)
Back to top