Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for Maximum (0.12 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	MAX_CONFIG_VALUE    = 9999
    	MAX_INSTANCE_VALUE  = 9999
    	CONFIGMG_VERSION    = 0x0400
    )
    
    // Maximum string length constants
    const (
    	LINE_LEN                    = 256  // Windows 9x-compatible maximum for displayable strings coming from a device INF.
    	MAX_INF_STRING_LENGTH       = 4096 // Actual maximum size of an INF string (including string substitutions).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $max)]>;
    
    // Convert softmax(x-reshape(maximum(max(x), -inf))) into softmax(x) as the softmax op already deals
    // with the max normalization. This comes from upstream Jax (https://github.com/google/jax/pull/15677)
    def FoldNormalizationIntoSoftmaxJaxWithAxisMinus1 : Pat<
      (TFL_SoftmaxOp
        (TFL_SubOp:$sub $input,
        (TFL_ReshapeOp:$reshape
          (TFL_MaximumOp:$maximum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// The config this deployment is rolling back to. Will be cleared after rollback is done.
    	// +optional
    	RollbackTo *RollbackConfig `json:"rollbackTo,omitempty" protobuf:"bytes,8,opt,name=rollbackTo"`
    
    	// The maximum time in seconds for a deployment to make progress before it
    	// is considered to be failed. The deployment controller will continue to
    	// process failed deployments and a condition with a ProgressDeadlineExceeded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    const (
    	opLeftParen = opPseudo + iota
    	opVerticalBar
    )
    
    // maxHeight is the maximum height of a regexp parse tree.
    // It is somewhat arbitrarily chosen, but the idea is to be large enough
    // that no one will actually hit in real use but at the same time small enough
    // that recursion on the Regexp tree will not hit the 1GB Go stack limit.
    // The maximum amount of stack for a single recursive frame is probably
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // webhook. Match conditions filter requests that have already been matched by the rules,
      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
      //   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * Sets the close timeout for web socket connections. A value of 0 means no timeout, otherwise
         * values must be between 1 and [Integer.MAX_VALUE] when converted to milliseconds.
         *
         * The close timeout is the maximum amount of time after the client calls [WebSocket.close] to
         * wait for a graceful shutdown. If the server doesn't respond the web socket will be canceled.
         * The default value is 60 seconds.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					}},
    				patchMyCRDV1Beta1Schema{
    					"Add stricter minimums and maximums that violate the previous object",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"hasMinimum": map[string]interface{}{
    								"minimum": 10,
    							},
    							"hasMaximum": map[string]interface{}{
    								"maximum": 20,
    							},
    							"hasMinimumAndMaximum": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // webhook. Match conditions filter requests that have already been matched by the rules,
      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
      //   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	// in leaving up to 100-retainExtraPercent live, and it's more efficient
    	// anyway, for the same reasons that retainExtraPercent exists.
    	reduceExtraPercent = 5
    
    	// maxPagesPerPhysPage is the maximum number of supported runtime pages per
    	// physical page, based on maxPhysPageSize.
    	maxPagesPerPhysPage = maxPhysPageSize / pageSize
    
    	// scavengeCostRatio is the approximate ratio between the costs of using previously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top