Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLessThan (0.06 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: 2025-05-30 12:43
    - Last Modified: 2025-02-12 03:05
    - 4K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/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: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 5K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/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: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 8.9K bytes
    - Viewed (0)
Back to top