Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for getInternal (0.3 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ManagedPropertyKotlinInterOpIntegrationTest.groovy

                    @get:Internal
                    abstract val flag: Property<Boolean>
                    @get:Internal
                    abstract val message: Property<String>
                    @get:Internal
                    abstract val number: Property<Double>
                    @get:Internal
                    abstract val list: ListProperty<Int>
                    @get:Internal
                    abstract val set: SetProperty<Int>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateAgpVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
        abstract val minimumSupportedMinor: Property<String>
    
        @get:Internal
        abstract val propertiesFile: RegularFileProperty
    
        @get:Internal
        abstract val compatibilityDocFile: RegularFileProperty
    
        @TaskAction
        fun fetch() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 09:17:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

    }
    
    
    class AndroidStudioSystemProperties(
        @get:Internal
        val studioInstallation: AndroidStudioInstallation,
        @get:Internal
        val autoDownloadAndroidStudio: Boolean,
        @get:Internal
        val runAndroidStudioInHeadlessMode: Boolean,
        @get:Internal
        val androidStudioHome: Provider<String>,
        @get:Internal
        val androidStudioJvmArgs: List<String>,
        providers: ProviderFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 09:51:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/toolchain-config-task/kotlin/build.gradle.kts

    import java.io.ByteArrayOutputStream
    
    plugins {
        `java-base`
    }
    
    
    abstract class TaskThatRequiresJavaExecutable : DefaultTask() {
    
        @get:Internal
        abstract val javaExecutable: RegularFileProperty
    
        @get:Inject
        protected abstract val execOps: ExecOperations
    
        @TaskAction
        fun action() {
            val outputBytes = ByteArrayOutputStream()
            execOps.exec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/kotlin/build.gradle.kts

    class StateObject {
        // ...
    }
    
    abstract class StatefulTask : DefaultTask() {
        @get:Internal
        var stateObject: StateObject? = null
    
        @get:Internal
        var strings: List<String>? = null
    }
    
    
    tasks.register<StatefulTask>("checkEquality") {
        val objectValue = StateObject()
        val stringsValue = arrayListOf("a", "b")
    
        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 657 bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

    abstract class DetermineBaselines @Inject constructor(@get:Internal val distributed: Boolean) : DefaultTask() {
    
        @get:Internal
        abstract val configuredBaselines: Property<String>
    
        @get:Internal
        abstract val determinedBaselines: Property<String>
    
        @get:Internal
        abstract val defaultBaselines: Property<String>
    
        @get:Internal
        abstract val logicalBranch: Property<String>
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/tasks/PluginsManifest.kt

    import java.util.Properties
    
    
    @CacheableTask
    @Suppress("unused")
    abstract class PluginsManifest : DefaultTask() {
    
        @get:Internal
        abstract val coreClasspath: ConfigurableFileCollection
    
        @Input
        val core = coreClasspath.toGradleModuleNameProvider()
    
        @get:Internal
        abstract val pluginsClasspath: ConfigurableFileCollection
    
        @Input
        val plugins = pluginsClasspath.toGradleModuleNameProvider()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateKotlinVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
        abstract val minimumSupported: Property<String>
    
        @get:Internal
        abstract val propertiesFile: RegularFileProperty
    
        @get:Internal
        abstract val compatibilityDocFile: RegularFileProperty
    
        @TaskAction
        fun action() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 13:50:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/PerformanceTestReport.kt

    abstract class PerformanceTestReport : DefaultTask() {
    
        @get:Classpath
        abstract val classpath: ConfigurableFileCollection
    
        @get:Input
        abstract val reportGeneratorClass: Property<String>
    
        @get:Internal
        abstract val performanceResultsDirectory: DirectoryProperty
    
        @get:SkipWhenEmpty
        @get:PathSensitive(PathSensitivity.NONE)
        @get:InputFiles
        val performanceResults: FileTree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateReleasedVersions.kt

    import java.io.File
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class UpdateReleasedVersions : DefaultTask() {
    
        @get:Internal
        abstract val releasedVersionsFile: RegularFileProperty
    
        @get:Internal
        abstract val currentReleasedVersion: Property<ReleasedVersion>
    
        @TaskAction
        fun updateVersions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top