Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,791 for greater (0.2 sec)

  1. pkg/apis/autoscaling/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("minReplicas"), *autoscaler.MinReplicas,
    			fmt.Sprintf("must be greater than or equal to %d", minReplicasLowerBound)))
    	}
    	if autoscaler.MaxReplicas < 1 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("maxReplicas"), autoscaler.MaxReplicas, "must be greater than 0"))
    	}
    	if autoscaler.MinReplicas != nil && autoscaler.MaxReplicas < *autoscaler.MinReplicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    // These expand from the same pattern. Full semantics are checked for
    // tf.Greater. Others just check that the pattern applied.
    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @greater
    func.func @greater(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2xi1> {
      // CHECK: mhlo.compare GT, %arg0, %arg1
      %0 = "tf.Greater"(%arg0, %arg1) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/validation/validation_test.go

    	}, {
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    			ScaleUp: &autoscaling.HPAScalingRules{
    				Policies: []autoscaling.HPAScalingPolicy{{
    					Type:          autoscaling.PodsScalingPolicy,
    					PeriodSeconds: 8,
    				}},
    			},
    		},
    		msg: "spec.behavior.scaleUp.policies[0].value: Invalid value: 0: must be greater than zero",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ContiguousSet.java

       * Range.closed(lower, upper)}.)
       *
       * @throws IllegalArgumentException if {@code lower} is greater than {@code upper}
       * @since 23.0
       */
      public static ContiguousSet<Integer> closed(int lower, int upper) {
        return create(Range.closed(lower, upper), DiscreteDomain.integers());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. docs_src/body_fields/tutorial001_py310.py

    
    class Item(BaseModel):
        name: str
        description: str | None = Field(
            default=None, title="The description of the item", max_length=300
        )
        price: float = Field(gt=0, description="The price must be greater than zero")
        tax: float | None = None
    
    
    @app.put("/items/{item_id}")
    async def update_item(item_id: int, item: Item = Body(embed=True)):
        results = {"item_id": item_id, "item": item}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 523 bytes
    - Viewed (0)
  6. test/fixedbugs/issue30709.go

    import "unsafe"
    
    const (
    	x = unsafe.Sizeof(func() {})
    	y
    )
    
    func main() {
    	const (
    		z = unsafe.Sizeof(func() {})
    		t
    	)
    
    	// x and y must be equal
    	println(x == y)
    	// size must be greater than zero
    	println(y > 0)
    
    	// Same logic as x, y above
    	println(z == t)
    	println(t > 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:07:42 UTC 2019
    - 550 bytes
    - Viewed (0)
  7. docs_src/body_fields/tutorial001.py

    class Item(BaseModel):
        name: str
        description: Union[str, None] = Field(
            default=None, title="The description of the item", max_length=300
        )
        price: float = Field(gt=0, description="The price must be greater than zero")
        tax: Union[float, None] = None
    
    
    @app.put("/items/{item_id}")
    async def update_item(item_id: int, item: Item = Body(embed=True)):
        results = {"item_id": item_id, "item": item}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 561 bytes
    - Viewed (0)
  8. cmd/typed-errors.go

    // error returned when upload id not found
    var errUploadIDNotFound = errors.New("Specified Upload ID is not found")
    
    // error returned when PartNumber is greater than the maximum allowed 10000 parts
    var errInvalidMaxParts = errors.New("Part number is greater than the maximum allowed 10000 parts")
    
    // error returned for session policies > 2048
    var errSessionPolicyTooLarge = errors.New("Session policy should not exceed 2048 characters")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/while_op.mlir

    // CHECK-NEXT:     version: 1,
    // CHECK-NEXT:     builtin_code: WHILE
    // CHECK-NEXT:   }, {
    // CHECK-NEXT:     deprecated_builtin_code: 61,
    // CHECK-NEXT:     version: 1,
    // CHECK-NEXT:     builtin_code: GREATER
    // CHECK-NEXT:   }, {
    // CHECK-NEXT:     deprecated_builtin_code: 41,
    // CHECK-NEXT:     version: 1,
    // CHECK-NEXT:     builtin_code: SUB
    // CHECK-NEXT:   }, {
    // CHECK-NEXT:     version: 1
    // CHECK-NEXT:   } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Comparators.java

      /**
       * Returns a {@code Collector} that returns the {@code k} greatest (relative to the specified
       * {@code Comparator}) input elements, in descending order, as an unmodifiable {@code List}. Ties
       * are broken arbitrarily.
       *
       * <p>For example:
       *
       * <pre>{@code
       * Stream.of("foo", "quux", "banana", "elephant")
       *     .collect(greatest(2, comparingInt(String::length)))
       * // returns {"elephant", "banana"}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top