Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for Maximum (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/apis/admissionregistration/types.go

    	// 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.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    		*out = new(apiextensions.JSON)
    		if err := Convert_v1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Default = nil
    	}
    	out.Maximum = (*float64)(unsafe.Pointer(in.Maximum))
    	out.ExclusiveMaximum = in.ExclusiveMaximum
    	out.Minimum = (*float64)(unsafe.Pointer(in.Minimum))
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = (*int64)(unsafe.Pointer(in.MaxLength))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    		*out = new(apiextensions.JSON)
    		if err := Convert_v1beta1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Default = nil
    	}
    	out.Maximum = (*float64)(unsafe.Pointer(in.Maximum))
    	out.ExclusiveMaximum = in.ExclusiveMaximum
    	out.Minimum = (*float64)(unsafe.Pointer(in.Minimum))
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = (*int64)(unsafe.Pointer(in.MaxLength))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top