Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for meminitial (0.13 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                                <source>1.8</source>
                                <target>1.8</target>
                                <fork>true</fork>
                                <meminitial>${config.compilerMemory}</meminitial>
                                <maxmem>${config.compilerMemory}</maxmem>
                            </configuration>
                        </plugin>
                        <plugin>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """
        }
    
        def serviceImplementation() {
            buildFile """
                interface CountingParams extends BuildServiceParameters {
                    Property<Integer> getInitial()
                }
    
                abstract class CountingService implements BuildService<CountingParams>, AutoCloseable {
                    int value
    
                    CountingService() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [source, groovy]
    ----
    interface CountingParams extends BuildServiceParameters {
        Property<Integer> getInitial()
    }
    ----
    
    A build service implementation can also optionally implement `AutoCloseable`, in which case Gradle will call the build service instance's `close()` method when it discards the service instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top