Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 593 for greater (0.14 sec)

  1. 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)
  2. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/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)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
         * If the TestNG version is greater than or equal to 6.9.12, the provided {@code value} is coerced to
         * an Enum, otherwise the method which accepts a {@code String} is called with the unmodified {@code value}.
         *
         * @param testNg the TestNG instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		}
    	}
    	return
    }
    
    func validateGateways(gw []*v1alpha1.GatewaySpec, name string) util.Errors {
    	// nolint: lll
    	format := "port %v/%v in gateway %v invalid: targetPort is set to %d, which requires root. Set targetPort to be greater than 1024 or configure values.gateways.%s.runAsRoot=true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // quantity is greater than y.
    func (q *Quantity) Cmp(y Quantity) int {
    	if q.d.Dec == nil && y.d.Dec == nil {
    		return q.i.Cmp(y.i)
    	}
    	return q.AsDec().Cmp(y.AsDec())
    }
    
    // CmpInt64 returns 0 if the quantity is equal to y, -1 if the quantity is less than y, or 1 if the
    // quantity is greater than y.
    func (q *Quantity) CmpInt64(y int64) int {
    	if q.d.Dec != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top