Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 224 for Constraint (0.13 sec)

  1. android/guava/src/com/google/common/primitives/Shorts.java

       * value} is greater than {@code max}, {@code max} is returned.
       *
       * @param value the {@code short} value to constrain
       * @param min the lower bound (inclusive) of the range to constrain {@code value} to
       * @param max the upper bound (inclusive) of the range to constrain {@code value} to
       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Shorts.java

       * value} is greater than {@code max}, {@code max} is returned.
       *
       * @param value the {@code short} value to constrain
       * @param min the lower bound (inclusive) of the range to constrain {@code value} to
       * @param max the upper bound (inclusive) of the range to constrain {@code value} to
       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

            CompiledGoFiles   []string   // .go files presented to compiler (when using -compiled)
            IgnoredGoFiles    []string   // .go source files ignored due to build constraints
            IgnoredOtherFiles []string // non-.go source files ignored due to build constraints
            CFiles            []string   // .c source files
            CXXFiles          []string   // .cc, .cxx and .cpp source files
            MFiles            []string   // .m source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Floats.java

       * value} is greater than {@code max}, {@code max} is returned.
       *
       * @param value the {@code float} value to constrain
       * @param min the lower bound (inclusive) of the range to constrain {@code value} to
       * @param max the upper bound (inclusive) of the range to constrain {@code value} to
       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Floats.java

       * value} is greater than {@code max}, {@code max} is returned.
       *
       * @param value the {@code float} value to constrain
       * @param min the lower bound (inclusive) of the range to constrain {@code value} to
       * @param max the upper bound (inclusive) of the range to constrain {@code value} to
       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    // Each matched pattern are rewritten by its quantized alternatives.
    //
    // Quantization method is determined by the `_quantization_method` attributes
    // attached to each quantizable units.
    //
    // Template constraints are imposed as follows:
    //
    // * `QuantizeOpT` should have only one operand.
    // * `DequantizeOpT` should have only one result.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates a pass to remove operands of TFL WhileOp without changing outcomes.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateReduceWhileOperandsPass();
    
    // Verifies runtime constraints.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateRuntimeVerifyPass();
    
    // Creates raise custom ops pass, which legalize custom ops to TFL::CustomOp
    std::unique_ptr<OperationPass<func::FuncOp>> CreateRaiseCustomOpsPass();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                    )
                )
    
                dependencies {
                    implementation("org:foo:1.0") {
                       because 'version 1.0 is tested'
                    }
                    constraints {
                        implementation("org:bar:2.0") {
                            because 'because 2.0 is cool'
                        }
                    }
                }
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

        enum FilePropertyAttribute {
    
            // When adding new values, be sure to comment which Gradle version started emitting the attribute.
            // Additionally, indicate any other relevant constraints with regard to other attributes or changes.
    
            // Every property has exactly one of the following
            FINGERPRINTING_STRATEGY_ABSOLUTE_PATH,
            FINGERPRINTING_STRATEGY_NAME_ONLY,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    template <typename T>
    FailureOr<T> TryCast(Operation* op, const StringRef name) {
      auto cast_op = dyn_cast_or_null<T>(op);
      if (cast_op) {
        return cast_op;
      } else {
        DEBUG_WITH_TYPE("mlir-quant-attrs-and-constraints",
                        llvm::dbgs() << "Failed to match " << name << " ("
                                     << T::getOperationName() << ").\n");
        return failure();
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top