Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 191 for output_types (0.2 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/DirectoryReport.java

        File getEntryPoint();
    
        @OutputDirectory
        @Override
        DirectoryProperty getOutputLocation();
    
        /**
         * Always returns {@link Report.OutputType#DIRECTORY}
         *
         * @return {@link Report.OutputType#DIRECTORY}
         */
        @Override
        OutputType getOutputType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/DefaultReportContainerTest.groovy

            final Property<Boolean> required = TestUtil.objectFactory().property(Boolean).value(false)
    
            TestReport(String name, Describable displayName, OutputType outputType) {
                super(name, displayName, outputType)
            }
    
            @Override
            FileSystemLocationProperty<? extends FileSystemLocation> getOutputLocation() {
                return null
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/internal/TaskReportContainerIntegTest.groovy

                    @TaskAction
                    def doStuff() {
                        reports.enabled.each {
                             if (it.outputType == Report.OutputType.FILE) {
                                 assert it.outputLocation.asFile.get().parentFile.exists() && it.outputLocation.asFile.get().parentFile.directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform.cc

        if (!input_dequant) return failure();
    
        if (!IsQI32Type(input_dequant.getType())) return failure();
    
        auto output_type =
            mlir::dyn_cast_or_null<ShapedType>(dequant_op.getOutput().getType());
        if (!output_type || !output_type.getElementType().isF32()) return failure();
    
        auto input_type = mlir::dyn_cast<ShapedType>(input_dequant.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/utils.h

    // This is only valid for trivial reshape ops.
    inline DenseElementsAttr GetPermutationFromTrivialReshape(
        ShapedType input_type, ShapedType output_type) {
      ArrayRef<int64_t> in_shape = input_type.getShape();
      ArrayRef<int64_t> out_shape = output_type.getShape();
    
      // Get the indexes of the non-identity dimensions and the identity dimensions
      // in the input shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

        ArrayRef<int64_t> reshape_shape = reshape_type.getShape();
    
        auto input_type = mlir::cast<ShapedType>(op.getInput().getType());
        auto output_type = mlir::cast<ShapedType>(op.getOutput().getType());
    
        if (!input_type.hasRank() || !output_type.hasRank()) return failure();
    
        // The pattern attempts to reduce the rank of the input to BroadcastTo.
        // Thus, we fail to match if the consuming reshape rank is larger.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleContainer.groovy

                }
            }
            FrameConsumerResultCallback callback = new FrameConsumerResultCallback()
            callback.addConsumer(OutputFrame.OutputType.STDOUT, stdoutConsumer)
            callback.addConsumer(OutputFrame.OutputType.STDERR, stderrConsumer)
            dockerClient.execStartCmd(execCreateCmdResponse.getId()).exec(callback).awaitCompletion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

            return binaryName != null ? binaryName : makeName(dimensionPrefix, binaryType);
        }
    
        private String getOutputDirectoryBase(@Nullable String outputType) {
            List<String> elements = new ArrayList<>();
            elements.add(outputType);
            elements.add(parentName);
            if (binaryName != null) {
                elements.add(binaryName);
            } else {
                if (!main) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. cluster/images/etcd/Makefile

    push: build
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    
    sub-build-%:
    	$(MAKE) OUTPUT_TYPE=docker OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) build
    
    all-build: $(addprefix sub-build-,$(ALL_OS_ARCH))
    
    sub-push-image-%:
    	$(MAKE) OUTPUT_TYPE=registry OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) OSVERSION=$(call word-hyphen,$*,3) REGISTRY=$(PUSH_REGISTRY) push
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      if (!type.hasStaticShape()) {
        return nullptr;
      }
      auto output_type = RankedTensorType::get({1}, builder.getI32Type());
      const int num_elements = type.getNumElements();
      return builder.create<ConstOp>(
          value.getLoc(), output_type,
          DenseIntElementsAttr::get(output_type, num_elements));
    }
    
    Type GetEmbeddingLookupShape(Value lookup, Value value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top