Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 23K (0.03 sec)

  1. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemoryAmountTest.groovy

            expect:
            amount.bytes == bytes
            amount.toString() == notation
    
            where:
            notation | bytes
            '23'     | 23L
            '23k'    | 23L * 1024
            '23K'    | 23L * 1024
            '23m'    | 23L * 1024 * 1024
            '23M'    | 23L * 1024 * 1024
            '23g'    | 23L * 1024 * 1024 * 1024
            '23G'    | 23L * 1024 * 1024 * 1024
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top