Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,944 for greater (0.14 sec)

  1. src/time/tick.go

    // the current time on the channel after each tick. The period of the
    // ticks is specified by the duration argument. The ticker will adjust
    // the time interval or drop ticks to make up for slow receivers.
    // The duration d must be greater than zero; if not, NewTicker will
    // panic.
    //
    // Before Go 1.23, the garbage collector did not recover
    // tickers that had not yet expired or been stopped, so code often
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/path-params-numeric-validations.md

    Валидация также применима к значениям типа `float`.
    
    В этом случае становится важной возможность добавить ограничение <abbr title="greater than"><code>gt</code></abbr>, вместо <abbr title="greater than or equal"><code>ge</code></abbr>, поскольку в таком случае вы можете, например, создать ограничение, чтобы значение было больше `0`, даже если оно меньше `1`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. pkg/proxy/conntrack/conntrack.go

    }
    
    // ClearEntriesForPort is part of Interface
    func (ct *execCT) ClearEntriesForPort(port int, isIPv6 bool, protocol v1.Protocol) error {
    	if port <= 0 {
    		return fmt.Errorf("wrong port number. The port number must be greater than zero")
    	}
    	parameters := parametersWithFamily(isIPv6, "-D", "-p", protoStr(protocol), "--dport", strconv.Itoa(port))
    	err := ct.exec(parameters...)
    	if err != nil && !strings.Contains(err.Error(), noConnectionToDelete) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation.go

    	}
    	if status.CollisionCount != nil {
    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*status.CollisionCount), fieldPath.Child("collisionCount"))...)
    	}
    
    	msg := "cannot be greater than status.replicas"
    	if status.ReadyReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("readyReplicas"), status.ReadyReplicas, msg))
    	}
    	if status.CurrentReplicas > status.Replicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    					Weight: 0,
    				},
    			},
    			wantErrs: field.ErrorList{
    				{
    					Type:  field.ErrorTypeInvalid,
    					Field: "scoringStrategy.resources[0].weight",
    				},
    			},
    		},
    		{
    			name: "weight greater than max",
    			resources: []config.ResourceSpec{
    				{
    					Name:   "cpu",
    					Weight: 101,
    				},
    			},
    			wantErrs: field.ErrorList{
    				{
    					Type:  field.ErrorTypeInvalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

     */
    
    package org.gradle.integtests.tooling.fixture
    
    import org.gradle.util.GradleVersion
    import spock.lang.Specification
    
    class GradleVersionSpecTest extends Specification {
        def "greater-than-or-equal version constraint matches all versions with specified base version and later"() {
            def spec = new GradleVersionSpec().toSpec(">=1.0")
    
            expect:
            spec.isSatisfiedBy(GradleVersion.version("1.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/caching/local/DirectoryBuildCache.java

            return removeUnusedEntriesAfterDays;
        }
    
        /**
         * Sets the number of days after unused entries are garbage collected. Defaults to 7 days.
         *
         * Must be greater than 1.
         *
         * @since 4.6
         * @deprecated
         */
        @Deprecated
        public void setRemoveUnusedEntriesAfterDays(int removeUnusedEntriesAfterDays) {
            if (removeUnusedEntriesAfterDays < 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/UnsignedBytes.java

      }
    
      /**
       * Returns the {@code byte} value that, when treated as unsigned, is equal to {@code value}, if
       * possible.
       *
       * @param value a value between 0 and 255 inclusive
       * @return the {@code byte} value that, when treated as unsigned, equals {@code value}
       * @throws IllegalArgumentException if {@code value} is negative or greater than 255
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. cmd/batch-expire_test.go

          size:
            lessThan: "10MiB" # match objects with size less than this value (e.g. 10MiB)
            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/validation/validation.go

    		errs = append(errs, field.Invalid(field.NewPath("podInitialBackoffSeconds"),
    			cc.PodInitialBackoffSeconds, "must be greater than 0"))
    	}
    	if cc.PodMaxBackoffSeconds < cc.PodInitialBackoffSeconds {
    		errs = append(errs, field.Invalid(field.NewPath("podMaxBackoffSeconds"),
    			cc.PodMaxBackoffSeconds, "must be greater than or equal to PodInitialBackoffSeconds"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top