- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 21 for get_input (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 16 02:21:13 GMT 2025 - 3.9K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayStatusTask.kt
@get:Input val projectPath = project.buildTreePath @get:Input abstract val nullawayEnabled: Property<Boolean> // TODO(https://github.com/gradle/gradle/issues/27582): We cannot use a SetProperty<ResolvedArtifactResult> because some projects // have no task dependencies and thus are non-CC serializable. @get:InputCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Aug 20 13:18:23 GMT 2025 - 2.5K bytes - Click Count (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/tasks/GenerateSample.kt
import org.gradle.work.DisableCachingByDefault import javax.inject.Inject @DisableCachingByDefault(because = "Not worth caching") abstract class GenerateSample : DefaultTask() { @get:Input abstract val type: Property<String> @get:Input abstract val modularization: Property<ModularizationOption> @get:InputDirectory @get:PathSensitive(PathSensitivity.NAME_ONLY) abstract val readmeTemplates: DirectoryProperty
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jul 07 13:12:26 GMT 2021 - 2K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupTask.kt
@get:OutputDirectory abstract val warmupProjectsDirectory: DirectoryProperty @get:Input abstract val sdkVersions: ListProperty<SdkVersion> @get:Internal abstract val rootProjectDir: DirectoryProperty @get:Inject abstract val execOperations: ExecOperations @get:Optional @get:Input val androidHome: Provider<String> = project.providers.environmentVariable("ANDROID_HOME")Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 09 09:24:29 GMT 2025 - 5.8K bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt
@get:Internal abstract val launcherJar: ConfigurableFileCollection @get:Input val launcherJarName: String get() = launcherJar.singleFile.name @get:Internal abstract val agentJars: ConfigurableFileCollection @get:Input val agentJarNames: List<String> get() = agentJars.files.map { it.name } @get:InputFilesCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Apr 08 01:46:59 GMT 2025 - 6.3K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/ClasspathManifest.kt
import org.gradle.api.tasks.TaskAction import org.gradle.api.file.RegularFileProperty import java.util.Properties @CacheableTask abstract class ClasspathManifest : DefaultTask() { @get:Input abstract val optionalProjects: ListProperty<String> @get:Internal abstract val projectDependencies: ConfigurableFileCollection @Input
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Mar 28 20:26:58 GMT 2024 - 2.4K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt
} @get:OutputFile abstract val outputFile: RegularFileProperty @get:CompileClasspath abstract val classpath: ConfigurableFileCollection @get:Input abstract val excludes: ListProperty<String> @get:Input abstract val includes: ListProperty<String> init { excludes.convention(DEFAULT_EXCLUDES) includes.convention(DEFAULT_INCLUDES) }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 15:53:18 GMT 2025 - 7.1K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiReportTask.kt
abstract val versionFile: RegularFileProperty @get:InputFile @get:PathSensitive(PathSensitivity.RELATIVE) abstract val releasedVersionsFile: RegularFileProperty @get:Input abstract val title: Property<String> @get:InputFiles @get:PathSensitive(PathSensitivity.RELATIVE) abstract val sources: ConfigurableFileCollection @get:OutputFileCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Jun 02 09:57:54 GMT 2025 - 2.4K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateLanguageAnnotations.kt
abstract class GenerateLanguageAnnotations : DefaultTask() { @get:Inject abstract val workerExecutor: WorkerExecutor @get:CompileClasspath abstract val classpath: ConfigurableFileCollection @get:Input abstract val packageName: Property<String> @get:OutputDirectory abstract val destDir: DirectoryProperty @TaskAction fun generateAnnotations() {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 07 08:27:12 GMT 2023 - 2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
options.tags("apiNote:a:API Note:", "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:"); // TODO: This breaks the provider task.getInputs().dir(javadocs.getJavaPackageListLoc()); var javaApiLink = javadocs.getJavaApi().map(URI::toString).map(v -> { if (v.endsWith("/")) { return v.substring(0, v.length() - 1);
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 02 14:18:24 GMT 2025 - 10.4K bytes - Click Count (0)