Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newInstance (0.25 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        if (executer == "embedded") {
            // Apply the instrumentation agent to the test process when running integration tests with embedded Gradle executer.
            jvmArgumentProviders.add(project.objects.newInstance<AgentsClasspathProvider>().apply {
                agentsClasspath.from(project.configurations["${testType.prefix}TestAgentsClasspath"])
            })
        }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            }
        }
    
        public void richReport(Action<? super RichReport> configureAction) {
            if (!getRichReport().isPresent()) {
                RichReport richReport = getProject().getObjects().newInstance(RichReport.class);
                DirectoryProperty buildDirectory = getProject().getLayout().getBuildDirectory();
                richReport.getDestinationDir().convention(buildDirectory.dir("reports"));
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
Back to top