Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		// less than or equal   : le BI%4==1 && test == f
    		// equal 		: eq BI%4==2 && test == t
    		// greater than or equal: ge BI%4==0 && test == f
    		// greater than		: gt BI%4==1 && test == t
    		// not less than	: nl BI%4==0 && test == f
    		// not equal		: ne BI%4==2 && test == f
    		// not greater than	: ng BI%4==1 && test == f
    		// summary overflow	: so BI%4==3 && test == t
    		// not summary overflow : ns BI%4==3 && test == f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/sort/zsortfunc.go

    			if partialInsertionSort_func(data, a, b) {
    				return
    			}
    		}
    
    		// Probably the slice contains many duplicate elements, partition the slice into
    		// elements equal to and elements greater than the pivot.
    		if a > 0 && !data.Less(a-1, pivot) {
    			mid := partitionEqual_func(data, a, b, pivot)
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition_func(data, a, b, pivot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/UnsignedInts.java

      }
    
      /**
       * Returns the {@code int} value that, when treated as unsigned, is equal to {@code value}, if
       * possible.
       *
       * @param value a value between 0 and 2<sup>32</sup>-1 inclusive
       * @return the {@code int} value that, when treated as unsigned, equals {@code value}
       * @throws IllegalArgumentException if {@code value} is negative or greater than or equal to
       *     2<sup>32</sup>
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/UnsignedInts.java

      }
    
      /**
       * Returns the {@code int} value that, when treated as unsigned, is equal to {@code value}, if
       * possible.
       *
       * @param value a value between 0 and 2<sup>32</sup>-1 inclusive
       * @return the {@code int} value that, when treated as unsigned, equals {@code value}
       * @throws IllegalArgumentException if {@code value} is negative or greater than or equal to
       *     2<sup>32</sup>
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/DiscreteDomain.java

          }
        }
        return current;
      }
    
      /**
       * Returns the unique least value of type {@code C} that is greater than {@code value}, or {@code
       * null} if none exists. Inverse operation to {@link #previous}.
       *
       * @param value any value of type {@code C}
       * @return the least value greater than {@code value}, or {@code null} if {@code value} is {@code
       *     maxValue()}
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. android/guava/src/com/google/common/math/Quantiles.java

       * greater than or equal to that.
       */
      private static int partition(double[] array, int from, int to) {
        // Select a pivot, and move it to the start of the slice i.e. to index from.
        movePivotToStartOfSlice(array, from, to);
        double pivot = array[from];
    
        // Move all elements with indexes in (from, to] which are greater than the pivot to the end of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. pkg/kubelet/types/pod_update_test.go

    			expected: true,
    		},
    		{
    			name:     "critical pod using system priority",
    			pod:      getTestPod(nil, &systemPriority, ""),
    			expected: true,
    		},
    		{
    			name:     "critical pod using greater than system priority",
    			pod:      getTestPod(nil, &systemPriorityUpper, ""),
    			expected: true,
    		},
    		{
    			name:     "not a critical pod with api server annotation",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 21 08:20:50 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Doubles.java

       * Compares the two specified {@code double} values. The sign of the value returned is the same as
       * that of <code>((Double) a).{@linkplain Double#compareTo compareTo}(b)</code>. As with that
       * method, {@code NaN} is treated as greater than all other values, and {@code 0.0 > -0.0}.
       *
       * <p><b>Note:</b> this method simply delegates to the JDK method {@link Double#compare}. It is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Doubles.java

       * Compares the two specified {@code double} values. The sign of the value returned is the same as
       * that of <code>((Double) a).{@linkplain Double#compareTo compareTo}(b)</code>. As with that
       * method, {@code NaN} is treated as greater than all other values, and {@code 0.0 > -0.0}.
       *
       * <p><b>Note:</b> this method simply delegates to the JDK method {@link Double#compare}. It is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top