- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 152 for dsl (0.04 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ElementWarningsRenderer.java
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.docbook; import gradlebuild.docs.dsl.docbook.model.DslElementDoc; import org.w3c.dom.Document; import org.w3c.dom.Element; public class ElementWarningsRenderer {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.8K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt
import org.gradle.api.provider.Provider import org.gradle.build.event.BuildEventsListenerRegistry // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390 import org.gradle.kotlin.dsl.* import org.gradle.kotlin.dsl.support.serviceOf /** * In build-logic and main build, register a BuildService instance separately, * which collects necessary information for build scan. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 24 03:34:53 UTC 2024 - 3.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockDetailRenderer.java
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.docbook; import gradlebuild.docs.dsl.docbook.model.BlockDoc; import org.w3c.dom.Document; import org.w3c.dom.Element; public class BlockDetailRenderer { private final GenerationListener listener;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.7K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy
* limitations under the License. */ package gradlebuild.docs.dsl.docbook import gradlebuild.docs.XmlSpecification import gradlebuild.docs.dsl.source.model.ClassMetaData import gradlebuild.docs.dsl.source.model.PropertyMetaData import gradlebuild.docs.dsl.source.model.MethodMetaData class JavadocConverterTest extends XmlSpecification { final ClassMetaData classMetaData = Mock()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 14.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.docbook; import gradlebuild.docs.dsl.docbook.model.ClassDoc; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class ClassDescriptionRenderer {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/EnumConstantMetaData.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.source.model; import java.io.Serializable; public class EnumConstantMetaData extends AbstractLanguageElement implements Serializable { private final String name; private final ClassMetaData ownerClass;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionDoc.groovy
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.docbook.model /** * Represents the documentation model for extensions contributed by a given plugin. */ class ClassExtensionDoc { private final Set<ClassDoc> mixinClasses = []
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.5K bytes - Viewed (0) -
build-logic-commons/module-identity/build.gradle.kts
plugins { `kotlin-dsl` } description = "Provides a plugin to define the version and name for subproject publications" group = "gradlebuild" dependencies { api(platform(projects.buildPlatform)) implementation(projects.basics) implementation("com.google.code.gson:gson")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 10:11:26 UTC 2024 - 292 bytes - Viewed (0) -
build-logic-commons/publishing/build.gradle.kts
plugins { `kotlin-dsl` } group = "gradlebuild" description = "Provides a plugin for publishing some of Gradle's subprojects to Artifactory or the Plugin Portal" dependencies { implementation(projects.basics) implementation(projects.moduleIdentity) implementation("com.gradle.publish:plugin-publish-plugin")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 329 bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
/** * Source code root folders. Java, Groovy and Kotlin public API sources, including * generated code. */ public abstract ConfigurableFileCollection getSourceRoots(); /** * Kotlin DSL source code to be documented. This should be the "public" Kotlin APIs, * including generated code. */ public abstract ConfigurableFileCollection getKotlinDslSource(); /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 4.4K bytes - Viewed (0)