Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newInstance (0.15 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

            val unpackAndroidStudio = project.tasks.named("unpackAndroidStudio", Copy::class.java)
            val androidStudioInstallation = project.objects.newInstance<AndroidStudioInstallation>().apply {
                studioInstallLocation.fileProvider(unpackAndroidStudio.map { it.destinationDir })
            }
            return AndroidStudioSystemProperties(
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 22 13:46:27 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

        rootProject.plugins.apply(TestFilesCleanupRootPlugin::class.java)
        val globalExtension = rootProject.extensions.getByType<TestFilesCleanupBuildServiceRootExtension>()
    
        val projectState = objects.newInstance(TestFilesCleanupProjectState::class.java)
    
        globalExtension.projectStates.put(path, projectState)
        projectState.projectBuildDir = layout.buildDirectory
        projectState.projectPath = path
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jul 11 06:57:51 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

                updateProperties(latestKotlinVersions)
                updateCompatibilityDoc(latestKotlinVersions)
            }
    
        private
        fun fetchLatestKotlinVersions() =
            DocumentBuilderFactory.newInstance().fetchFirstAndLatestsOfEachMinor(
                minimumSupported.get(),
                "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/maven-metadata.xml"
            )
    
        private
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 13:50:17 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

        data class FetchedVersions(val latests: List<String>, val nightlyBuildId: String, val nightlyVersion: String)
    
        private
        fun fetchLatestAgpVersions(): FetchedVersions {
            val dbf = DocumentBuilderFactory.newInstance()
            val latests = dbf.fetchLatests(
                minimumSupportedMinor.get(),
                "https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/maven-metadata.xml"
            )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jun 02 09:17:07 GMT 2023
    - 5.6K bytes
    - Viewed (0)
Back to top