Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for max8 (0.46 sec)

  1. pkg/apis/core/validation/validation_test.go

    		},
    		"invalid min greater than max": {
    			core.LimitRange{ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: "foo"}, Spec: core.LimitRangeSpec{
    				Limits: []core.LimitRangeItem{{
    					Type: core.LimitTypePersistentVolumeClaim,
    					Min:  getStorageResourceList("10Gi"),
    					Max:  getStorageResourceList("1Gi"),
    				}},
    			}},
    			"min value 10Gi is greater than max value 1Gi",
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                    attributes, while a session cookie is deleted when the current
                                    session ends.
    
    
                                    When set to "Permanent", AbsoluteTimeout indicates the
                                    cookie's lifetime via the Expires or Max-Age cookie attributes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Before quantization, `min` and `max` values are adjusted with the following
    logic.
    It is suggested to have `min <= 0 <= max`. If `0` is not in the range of values,
    the behavior can be unexpected:
    
    *   If `0 < min < max`: `min_adj = 0` and `max_adj = max - min`.
    *   If `min < max < 0`: `min_adj = min - max` and `max_adj = 0`.
    *   If `min <= 0 <= max`: `scale = (max - min) / (2^num_bits - 1) `,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top