Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,784 for Greater (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. docs/pt/docs/tutorial/path-params-numeric-validations.md

    Validações numéricas também funcionam para valores do tipo `float`.
    
    Aqui é onde se torna importante a possibilidade de declarar <abbr title="greater than"><code>gt</code></abbr> e não apenas <abbr title="greater than or equal"><code>ge</code></abbr>. Com isso você pode especificar, por exemplo, que um valor deve ser maior que `0`, ainda que seja menor que `1`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. security/pkg/pki/ra/common.go

    	if requestedLifetime.Seconds() <= 0 {
    		lifetime = raOpts.DefaultCertTTL
    	}
    	// If the requested TTL is greater than maxCertTTL, return an error
    	if requestedLifetime.Seconds() > raOpts.MaxCertTTL.Seconds() {
    		return lifetime, raerror.NewError(raerror.TTLError, fmt.Errorf(
    			"requested TTL %s is greater than the max allowed TTL %s", requestedLifetime, raOpts.MaxCertTTL))
    	}
    	return lifetime, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/validation/validation.go

    	"k8s.io/kubernetes/pkg/apis/core/helper"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	apivalidation "k8s.io/kubernetes/pkg/apis/core/validation"
    )
    
    const isNegativeErrorMsg string = `must be greater than or equal to 0`
    const isNotIntegerErrorMsg string = `must be an integer`
    
    // ValidateResourceRequirements will check if any of the resource
    // Limits/Requests are of a valid value. Any incorrect value will be added to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. pkg/volume/metrics_du_test.go

    	// as a filesystem
    	if a := actual.Capacity.Value(); a <= 0 {
    		t.Errorf("Expected Capacity %d to be greater than 0.", a)
    	}
    	if a := actual.Available.Value(); a <= 0 {
    		t.Errorf("Expected Available %d to be greater than 0.", a)
    	}
    
    	// Write a file and expect Used to increase
    	os.WriteFile(filepath.Join(tmpDir, "f1"), []byte("Hello World"), os.ModeTemporary)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/path-params-numeric-validations.md

    ```Python hl_lines="9"
    {!../../../docs_src/path_params_numeric_validations/tutorial005.py!}
    ```
    
    ## 🔢 🔬: 🎈, 🌘 🌘 &amp; 🌘 🌘
    
    🔢 🔬 👷 `float` 💲.
    
    📥 🌐❔ ⚫️ ▶️️ ⚠ 💪 📣 <abbr title="greater than"><code>gt</code></abbr> &amp; 🚫 <abbr title="greater than or equal"><code>ge</code></abbr>. ⏮️ ⚫️ 👆 💪 🚚, 🖼, 👈 💲 🔜 👑 🌘 `0`, 🚥 ⚫️ 🌘 🌘 `1`.
    
    , `0.5` 🔜 ☑ 💲. ✋️ `0.0` ⚖️ `0` 🔜 🚫.
    
    &amp; 🎏 <abbr title="less than"><code>lt</code></abbr>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/BaseGraph.java

       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
       * self-loops incident to {@code node}).
       *
       * <p>If the count is greater than {@code Integer.MAX_VALUE}, returns {@code Integer.MAX_VALUE}.
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this graph
       */
      int degree(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top