Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Maximum (0.15 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. 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)
  4. 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)
  5. 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)
  6. src/crypto/tls/common.go

    	}
    }
    
    const (
    	maxPlaintext               = 16384        // maximum plaintext payload length
    	maxCiphertext              = 16384 + 2048 // maximum ciphertext payload length
    	maxCiphertextTLS13         = 16384 + 256  // maximum ciphertext length in TLS 1.3
    	recordHeaderLen            = 5            // record header length
    	maxHandshake               = 65536        // maximum handshake we support (protocol max is 16 MB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	tcpMSSEstimate = 1208
    
    	// recordSizeBoostThreshold is the number of bytes of application data
    	// sent after which the TLS record size will be increased to the
    	// maximum.
    	recordSizeBoostThreshold = 128 * 1024
    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    //   - For latency-sensitive applications, such as web browsing, each TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// We want to cache 2KB, 4KB, 8KB, and 16KB stacks. Larger stacks
    	// will be allocated directly.
    	// Since FixedStack is different on different systems, we
    	// must vary NumStackOrders to keep the same maximum cached size.
    	//   OS               | FixedStack | NumStackOrders
    	//   -----------------+------------+---------------
    	//   linux/darwin/bsd | 2KB        | 4
    	//   windows/32       | 4KB        | 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		Description:    "Your proposed upload exceeds the maximum allowed object size.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrExcessData: {
    		Code:           "ExcessData",
    		Description:    "More data provided than indicated content length",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrPolicyTooLarge: {
    		Code:           "PolicyTooLarge",
    		Description:    "Policy exceeds the maximum allowed document size.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top