Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 105 of 105 for getOutputAs (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Task.java

        @Internal
        TaskInputs getInputs();
    
        /**
         * <p>Returns the outputs of this task.</p>
         *
         * @return The outputs. Never returns null.
         */
        @Internal
        TaskOutputs getOutputs();
    
        /**
         * <p>Returns the destroyables of this task.</p>
         * @return The destroyables.  Never returns null.
         *
         * @since 4.0
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * link:{groovyDslPath}/org.gradle.api.Task.html#org.gradle.api.Task:outputs[Task.getOutputs()] of type link:{javadocPath}/org/gradle/api/tasks/TaskOutputs.html[TaskOutputs]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                    PatternRewriter &rewriter) const override {
        SmallVector<Type> result_types;
        result_types.reserve(op.getOutputs().size() + 1);
        for (const auto &output : op.getOutputs()) {
          Type ty = output.getType();
          if (auto tensor_ty = mlir::dyn_cast<RankedTensorType>(ty)) {
            if (!tensor_ty.hasStaticShape()) return failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.getOutputs()> has arguments/return type org.gradle.api.internal.TaskOutputsInternal that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // Replace the ControlNodeOp with the wrapped operation.
        rewriter.setInsertionPointAfter(outer_op);
        auto* cloned_inner = rewriter.clone(*inner_op);
        for (auto it :
             llvm::zip(control_node_op.getOutputs(), cloned_inner->getResults())) {
          std::get<0>(it).replaceAllUsesWith(std::get<1>(it));
        }
        rewriter.eraseOp(outer_op);
      }
      return control_edges;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top