Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,302 for Greater (0.28 sec)

  1. releasenotes/notes/22161.yaml

    kind: bug-fix
    area: security
    issue:
    - 22161
    releaseNotes:
    - |
      **Updated** Configuration to sign Istiod certificates using Kubernetes CA (PILOT_CERT_PROVIDER=kubernetes) will not be honored in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 08 23:59:52 UTC 2021
    - 265 bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/rule_test.go

    	                    </Rule>`,
    			expectedErr: errXMLNotWellFormed,
    		},
    		{ // Rule with negative values for ObjectSizeGreaterThan
    			inputXML: `<Rule>
    				<ID>negative-obj-size-greater-than</ID>
    				<Filter><ObjectSizeGreaterThan>-1</ObjectSizeGreaterThan></Filter>
    				<Expiration>
    					<Days>365</Days>
    				</Expiration>
                                <Status>Enabled</Status>
    	                    </Rule>`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs_src/body_fields/tutorial001_an.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: Annotated[Item, Body(embed=True)]):
        results = {"item_id": item_id, "item": item}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 611 bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/util_others_test.go

    limitations under the License.
    */
    
    package runtime
    
    import (
    	"testing"
    )
    
    func checkLatency(t *testing.T, value float64) {
    	if value <= 0 {
    		t.Errorf("Expect latency to be greater than 0, got: %v", value)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 29 16:32:26 UTC 2022
    - 788 bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/SignedBytes.java

       *
       * @param value any value in the range of the {@code byte} type
       * @return the {@code byte} value that equals {@code value}
       * @throws IllegalArgumentException if {@code value} is greater than {@link Byte#MAX_VALUE} or
       *     less than {@link Byte#MIN_VALUE}
       */
      public static byte checkedCast(long value) {
        byte result = (byte) value;
        checkArgument(result == value, "Out of range: %s", value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
Back to top