Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for resultType (0.2 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

        }
    
        static TestStartEvent createTestStartEvent() {
            new TestStartEvent(new Date().time)
        }
    
        static TestResult createTestResult() {
            new DefaultTestResult(TestResult.ResultType.SUCCESS, new Date().time, new Date().time, 2L, 2L, 0L, [])
        }
    
        static TestCompleteEvent createTestCompleteEvent() {
            new TestCompleteEvent(new Date().time)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

                    return new TypedRecord<D, R>(
                        descriptor,
                        BuildOperationTypes.detailsType(buildOperationType).cast(descriptor.getDetails()),
                        BuildOperationTypes.resultType(buildOperationType).cast(result),
                        failure
                    );
                }
    
            }
    
            public static class TypedRecord<D, R> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    )
    
    var Analyzer = &analysis.Analyzer{
    	Name:       "ctrlflow",
    	Doc:        "build a control-flow graph",
    	URL:        "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/ctrlflow",
    	Run:        run,
    	ResultType: reflect.TypeOf(new(CFGs)),
    	FactTypes:  []analysis.Fact{new(noReturn)},
    	Requires:   []*analysis.Analyzer{inspect.Analyzer},
    }
    
    // noReturn is a fact indicating that a function does not return.
    type noReturn struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

      // result of 'resultType'. If a conversion can not be generated, nullptr
      // should be returned.
      Operation *materializeCallConversion(OpBuilder &builder, Value input,
                                           Type result_type,
                                           Location conversion_loc) const final {
        if (!mlir::isa<TensorType>(result_type) ||
            !mlir::isa<TensorType>(input.getType()))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

                                  PatternRewriter* rewriter) {
      auto shape_tensor = createI64ConstantOp(
          tensorflow::ConvertMlirShapeToTF(shape), loc, rewriter);
      Type resultType = RankedTensorType::get(shape, element_type);
      return rewriter->create<TF::ReshapeOp>(loc, resultType, /*tensor=*/value,
                                             /*shape=*/shape_tensor);
    }
    
    // Creates ReshapeOp with runtime calcuation of required shape to support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      // result of 'resultType'. If a conversion can not be generated, nullptr
      // should be returned.
      // This is just re-using the same logic as the TensorFlow dialect right now.
      Operation* materializeCallConversion(OpBuilder& builder, Value input,
                                           Type result_type,
                                           Location conversion_loc) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                               llvm::function_ref<APFloat(APFloat)> calculate) {
      assert(IsF32ShapedType(result_type) || IsBF16ShapedType(result_type));
      auto result_shape_type = result_type.cast<ShapedType>();
    
      if (!result_shape_type.hasStaticShape()) return {};
    
      if (auto dense_elements = operand.dyn_cast_or_null<DenseElementsAttr>()) {
        SmallVector<APFloat, 16> new_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

      // result of 'resultType'. If a conversion can not be generated, nullptr
      // should be returned.
      Operation *materializeCallConversion(OpBuilder &builder, Value input,
                                           Type result_type,
                                           Location conversion_loc) const final {
        if (!input.getType().isa<IntegerType>() ||
            !result_type.isa<IntegerType>()) {
          return nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def TFL_BroadcastableBinaryBuilder :
      OpBuilder<(ins "Value":$lhs, "Value":$rhs),
      [{
        auto resultType =
          OpTrait::util::getBroadcastedType(lhs.getType(), rhs.getType());
        if (!resultType)
          mlir::emitError($_state.location, "non-broadcastable operands");
        $_state.addOperands({lhs, rhs});
        $_state.types.push_back(resultType);
      }]>;
    
    def TFL_FusedBroadcastableBinaryBuilder :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	Doc:        analysisutil.MustExtractDoc(doc, "printf"),
    	URL:        "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/printf",
    	Requires:   []*analysis.Analyzer{inspect.Analyzer},
    	Run:        run,
    	ResultType: reflect.TypeOf((*Result)(nil)),
    	FactTypes:  []analysis.Fact{new(isWrapper)},
    }
    
    // Kind is a kind of fmt function behavior.
    type Kind int
    
    const (
    	KindNone   Kind = iota // not a fmt wrapper function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top