Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for Maximum (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

      %3 = stablehlo.maximum %2, %1 : tensor<1x3x3x4xf32>
      func.return %3: tensor<1x3x3x4xf32>
    }
    // CHECK: %[[CONST_0:.*]] = stablehlo.constant dense<2.000000e+00>
    // CHECK: %[[CONST_1:.*]] = stablehlo.constant dense<2.000000e+00>
    // CHECK: %[[XLA_CALL_MODULE:.*]] = "tf.XlaCallModule"(%arg0, %[[CONST_0]])
    // CHECK: %[[MAX:.*]] = stablehlo.maximum %[[XLA_CALL_MODULE]], %[[CONST_1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

        max_digits: Annotated[
            Union[int, None],
            Doc(
                """
                Maximum number of allow digits for strings.
                """
            ),
        ] = _Unset,
        decimal_places: Annotated[
            Union[int, None],
            Doc(
                """
                Maximum number of decimal places allowed for numbers.
                """
            ),
        ] = _Unset,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    queue_dir            (path)               staging dir for undelivered messages e.g. '/home/events'
    queue_limit          (number)             maximum limit for undelivered messages, defaults to '100000'
    max_open_connections (number)             maximum number of open connections to the database, defaults to '2'
    comment              (sentence)           optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

        checkState(
            this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize);
        checkState(
            this.maximumWeight == UNSET_INT,
            "maximum weight was already set to %s",
            this.maximumWeight);
        checkState(this.weigher == null, "maximum size can not be combined with weigher");
        checkArgument(maximumSize >= 0, "maximum size must not be negative");
        this.maximumSize = maximumSize;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. tests/test_application.py

                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "maximum": 3.0,
                                    "type": "number",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

                    format: int32
                    maximum: 255
                    minimum: 2
                    type: integer
                  echoInterval:
                    description: Configures the minimal echo receive transmission interval
                      that this system is capable of handling in milliseconds. Defaults
                      to 50ms
                    format: int32
                    maximum: 60000
                    minimum: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// exceedingly rare) for the current number of idle mark workers to
    	// transiently exceed the maximum. This could happen if the maximum changes
    	// just after a GC ends, and an M with no P.
    	//
    	// Note that if we have no dedicated mark workers, we set this value to
    	// 1 in this case we only have fractional GC workers which aren't scheduled
    	// strictly enough to ensure GC progress. As a result, idle-priority mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation.go

    	// maximum number of rules in pod failure policy
    	maxPodFailurePolicyRules = 20
    
    	// maximum number of values for a OnExitCodes requirement in pod failure policy
    	maxPodFailurePolicyOnExitCodesValues = 255
    
    	// maximum number of patterns for a OnPodConditions requirement in pod failure policy
    	maxPodFailurePolicyOnPodConditionsPatterns = 20
    
    	// maximum length of the value of the managedBy field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    			possibleLimitingReason = "ScaleUpLimit"
    			possibleLimitingMessage = "the desired replica count is increasing faster than the maximum scale rate"
    		} else {
    			possibleLimitingReason = "TooManyReplicas"
    			possibleLimitingMessage = "the desired replica count is more than the maximum replica count"
    		}
    		if args.DesiredReplicas > maximumAllowedReplicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          # If present the last op before return should be stablehlo.clamp for relu6
          # and stablehlo.maximum for relu.
          if activation_fn is nn_ops.relu6:
            self.assertRegex(module_str, r'stablehlo.clamp.*\n.*return')
          elif activation_fn is nn_ops.relu:
            self.assertRegex(module_str, r'stablehlo.maximum.*\n.*return')
        else:
          # Check activation functions are implicit.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top