Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for IsLessThan (0.12 sec)

  1. android/guava-tests/test/com/google/common/collect/ComparisonChainTest.java

                    .result())
            .isLessThan(0);
      }
    
      public void testCompareFalseFirst() {
        assertThat(ComparisonChain.start().compareFalseFirst(true, true).result()).isEqualTo(0);
        assertThat(ComparisonChain.start().compareFalseFirst(true, false).result()).isGreaterThan(0);
        assertThat(ComparisonChain.start().compareFalseFirst(false, true).result()).isLessThan(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    		{
    			name:        "quantity_less",
    			expr:        `quantity("50M").isLessThan(quantity("50Mi"))`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "quantity_less_obvious",
    			expr:        `quantity("50M").isLessThan(quantity("100M"))`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "quantity_less_false",
    			expr:        `quantity("100M").isLessThan(quantity("50M"))`,
    			expectValue: falseVal,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    // lower-numbered bits set wins out.
    func (s *bitMask) IsNarrowerThan(mask BitMask) bool {
    	if s.Count() == mask.Count() {
    		return s.IsLessThan(mask)
    	}
    	return s.Count() < mask.Count()
    }
    
    // IsLessThan checks which bitmask has more lower-numbered bits set.
    func (s *bitMask) IsLessThan(mask BitMask) bool {
    	return *s < *mask.(*bitMask)
    }
    
    // IsGreaterThan checks which bitmask has more higher-numbered bits set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/ws/MessageDeflaterInflaterTest.kt

     * limitations under the License.
     */
    package okhttp3.internal.ws
    
    import assertk.assertThat
    import assertk.assertions.isEqualTo
    import assertk.assertions.isLessThan
    import java.io.EOFException
    import kotlin.test.assertFailsWith
    import okhttp3.TestUtil.fragmentBuffer
    import okio.Buffer
    import okio.ByteString
    import okio.ByteString.Companion.decodeHex
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Cut.java

    @ElementTypesAreNonnullByDefault
    abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable {
      final C endpoint;
    
      Cut(C endpoint) {
        this.endpoint = endpoint;
      }
    
      abstract boolean isLessThan(C value);
    
      abstract BoundType typeAsLowerBound();
    
      abstract BoundType typeAsUpperBound();
    
      abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Cut.java

    @ElementTypesAreNonnullByDefault
    abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable {
      final C endpoint;
    
      Cut(C endpoint) {
        this.endpoint = endpoint;
      }
    
      abstract boolean isLessThan(C value);
    
      abstract BoundType typeAsLowerBound();
    
      abstract BoundType typeAsUpperBound();
    
      abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeRangeSet.java

                nextComplementRangeUpperBound = positiveRange.lowerBound;
                if (complementLowerBoundWindow.lowerBound.isLessThan(negativeRange.lowerBound)) {
                  return Maps.immutableEntry(negativeRange.lowerBound, negativeRange);
                }
              } else if (complementLowerBoundWindow.lowerBound.isLessThan(Cut.<C>belowAll())) {
                Range<C> negativeRange = Range.create(Cut.<C>belowAll(), nextComplementRangeUpperBound);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    //
    //   - isLessThan: Returns true if and only if the receiver is less than the operand
    //
    //   - compareTo: Compares receiver to operand and returns 0 if they are equal, 1 if the receiver is greater, or -1 if the receiver is less than the operand
    //
    //
    //     <Quantity>.isLessThan(<quantity>) <bool>
    //     <Quantity>.isGreaterThan(<quantity>) <bool>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeRangeSet.java

                nextComplementRangeUpperBound = positiveRange.lowerBound;
                if (complementLowerBoundWindow.lowerBound.isLessThan(negativeRange.lowerBound)) {
                  return Maps.immutableEntry(negativeRange.lowerBound, negativeRange);
                }
              } else if (complementLowerBoundWindow.lowerBound.isLessThan(Cut.<C>belowAll())) {
                Range<C> negativeRange = Range.create(Cut.<C>belowAll(), nextComplementRangeUpperBound);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/idn/IdnaMappingTableTest.kt

        assertThat(compactTable.sections.length).isLessThan(1 shl 14)
    
        // Less than 65,536 bytes, because we binary search on a 14-bit index with a stride of 4 bytes.
        assertThat(compactTable.ranges.length).isLessThan((1 shl 14) * 4)
    
        // Less than 16,384 chars, because we index on a 14-bit index in the ranges table.
        assertThat(compactTable.mappings.length).isLessThan(1 shl 14)
    
        // Confirm the data strings are ASCII.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top