Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for setupSpec (0.07 sec)

  1. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

        private static final byte[] TEST_STRING_BYTES = TEST_STRING.getBytes('UTF-8')
    
        static byte[] testbuffer = new byte[256 * TESTROUNDS]
    
        @CompileStatic
        def setupSpec() {
            for (int i = 0; i < TESTROUNDS; i++) {
                for (int j = 0; j < 256; j++) {
                    testbuffer[i * 256 + j] = (byte) (j & 0xff)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        def setupSpec() {
            groovyClassLoader = new GroovyClassLoader(getClass().classLoader)
        }
    
        static class TaskWithCustomAnnotation extends DefaultTask {
            @SearchPath
            FileCollection searchPath
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top