- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for kotlinDslReference (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/KotlinDslReference.java
package gradlebuild.docs; import org.gradle.api.file.DirectoryProperty; import org.gradle.api.provider.Property; /** * Configuration for generating Dokka based Kotlin DSL docs. */ public abstract class KotlinDslReference { /** * The location of the final rendered Dokka content. */ public abstract DirectoryProperty getRenderedDocumentation(); /**Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Jan 15 14:00:14 GMT 2024 - 1.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
public void javadocs(Action<? super Javadocs> action) { action.execute(javadocs); } public KotlinDslReference getKotlinDslReference() { return kotlinDslReference; } public void kotlinDslReference(Action<? super KotlinDslReference> action) { action.execute(kotlinDslReference); } /** * This property is wired into very slow documentation generation tasks. *
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Aug 20 14:11:17 GMT 2024 - 4.4K bytes - Click Count (0)