Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for setAttrs (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

            output_uniform_quantized_tensor_type};
        auto new_conv_op_with_output_type =
            rewriter.create<stablehlo::ConvolutionOp>(
                op.getLoc(), new_conv_output_types, op.getOperands(),
                op->getAttrs());
    
        rewriter.replaceAllUsesWith(op.getResult(),
                                    new_conv_op_with_output_type.getResult());
    
        auto new_output_dequant_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    It works for properties that are publicly seen as `final` (without a setter) and have type `Property` or `ConfigurableFileCollection`.
    Since properties have to be `final`, our general recommendation is not to implement custom setters for properties with lazy types and, if possible, implement such properties via an abstract getter.
    
    Using the `=` operator is the preferred way to call `set()` in the Kotlin DSL.
    
    .Kotlin lazy property assignment
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * your build file, or by calling the project's {@link #property(String)} method. The scopes are:</p>
     *
     * <ul>
     *
     * <li>The <code>Project</code> object itself. This scope includes any property getters and setters declared by the
     * <code>Project</code> implementation class.  For example, {@link #getRootProject()} is accessible as the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top