Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Maximum (0.31 sec)

  1. prow/config/calico.yaml

                      type: string
                    type: array
                  listenPort:
                    description: ListenPort is the port where BGP protocol should listen.
                      Defaults to 179
                    maximum: 65535
                    minimum: 1
                    type: integer
                  logSeverityScreen:
                    description: 'LogSeverityScreen is the log severity above which logs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// sizeLimit is the total amount of local storage required for this EmptyDir volume.
    	// The size limit is also applicable for memory medium.
    	// The maximum usage on memory medium EmptyDir would be the minimum value between
    	// the SizeLimit specified here and the sum of memory limits of all containers in a pod.
    	// The default is nil which means that the limit is undefined.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - `kubelet` , when using `--cloud-provider=external`, will now initialize the node addresses...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    var validValidationSchema = &apiextensions.JSONSchemaProps{
    	Description:      "This is a description",
    	Type:             "object",
    	Format:           "date-time",
    	Title:            "This is a title",
    	Maximum:          float64Ptr(10),
    	ExclusiveMaximum: true,
    	Minimum:          float64Ptr(5),
    	ExclusiveMinimum: true,
    	MaxLength:        int64Ptr(10),
    	MinLength:        int64Ptr(5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    // Compute resources required by a container.
    type Resources struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// The maximum amount of compute resources allowed.
    	// More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // dimensions with max as the reduction function.
    //
    // Sample result for VALID padding mode:
    //
    //   %init = arith.constant dense<...> : tensor<i32>
    //   %max_pool = "mhlo.reduce"(%inp, %init) ["mhlo.maximum"]
    //               {window_dimensions = ..., window_strides = ... }
    //
    template <typename OpTy, int num_dims>
    class ConvertMaxPoolOp : public OpRewritePattern<OpTy> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. doc/go_spec.html

    elements are set to the zero value for the array element type.
    It is an error to provide elements with index values outside the index range
    of the array. The notation <code>...</code> specifies an array length equal
    to the maximum element index plus one.
    </p>
    
    <pre>
    buffer := [10]string{}             // len(buffer) == 10
    intSet := [6]int{1, 2, 3, 5}       // len(intSet) == 6
    days := [...]string{"Sat", "Sun"}  // len(days) == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    			_, maxQuantityFound := limit.Max[core.ResourceStorage]
    			if !minQuantityFound && !maxQuantityFound {
    				allErrs = append(allErrs, field.Required(idxPath.Child("limits"), "either minimum or maximum storage value is required, but neither was provided"))
    			}
    		}
    
    		for k, q := range limit.MaxLimitRequestRatio {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-61597`](https://youtrack.jetbrains.com/issue/KT-61597) Analysis API: KotlinIllegalStateExceptionWithAttachments: expected as maximum one `expect` for the actual on errorneous code with multiple expects
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top