- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for listProperty (0.09 seconds)
-
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt
* limitations under the License. */ package gradlebuild import org.gradle.api.DefaultTask import org.gradle.api.file.RegularFileProperty import org.gradle.api.provider.ListProperty import org.gradle.api.tasks.Input import org.gradle.api.tasks.OutputFile import org.gradle.api.tasks.TaskAction import java.io.PrintWriter abstract class GeneratorTask : DefaultTask() {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3.8K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratePlatformsDataTask.kt
* limitations under the License. */ package gradlebuild import com.google.gson.Gson import org.gradle.api.DefaultTask import org.gradle.api.file.RegularFileProperty import org.gradle.api.provider.ListProperty import org.gradle.api.tasks.Input import org.gradle.api.tasks.OutputFile import org.gradle.api.tasks.TaskAction abstract class GeneratePlatformsDataTask : DefaultTask() {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 1.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
*/ @get:Input abstract val projectPaths: ListProperty<String> /** * A list of the same size as [projectPaths], where the nth element contains * the target runtime details file for the project with the nth project path. */ @get:InputFiles @get:PathSensitive(PathSensitivity.RELATIVE) abstract val targetRuntimeDetailsFiles: ListProperty<File> /**Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
} open class ErrorProneProjectExtension( val disabledChecks: ListProperty<String>, val nullawayEnabled: Property<Boolean> ) open class ErrorProneSourceSetExtension( val enabled: Property<Boolean> ) val errorproneExtension = project.extensions.create<ErrorProneProjectExtension>( "errorprone", objects.listProperty<String>(), objects.property<Boolean>() ).apply { disabledChecks.addAll(
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:47:14 GMT 2026 - 8.7K bytes - Click Count (0)