Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for title (0.12 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertiesRenderer.java

            Element summarySection = document.createElement("section");
            parent.appendChild(summarySection);
    
            Element title = document.createElement("title");
            summarySection.appendChild(title);
            title.appendChild(document.createTextNode("Properties"));
    
            Collection<PropertyDoc> classProperties = classDoc.getClassProperties();
            if (!classProperties.isEmpty()) {
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts

    plugins {
        java
        groovy
    }
    
    val reportTask = tasks.register<IncubatingApiReportTask>("incubationReport") {
        group = "verification"
        description = "Generates a report of incubating APIS"
        title = project.name
        versionFile = repoRoot().file("version.txt")
        releasedVersionsFile = releasedVersionsFile()
        sources.from(sourceSets.main.get().java.sourceDirectories)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
    Others
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. architecture/standards/0001-use-architectural-decision-records.md

    The goal is not to *own* a decision, but to *share* it with other teams, and improve the build tool together.
    
    ### Format
    
    The format for ADR should follow this template:
    
    ```markdown
    # ADR-000X - Title
    
    ## Date
    
    20YY-MM-DD
    
    ## Context
    
    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat Mar 02 21:54:40 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockDetailRenderer.java

            section.setAttribute("role", "detail");
    
            Element title = document.createElement("title");
            section.appendChild(title);
            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(blockDoc.getName()));
            title.appendChild(document.createTextNode(" { }"));
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java

        public void renderTo(ClassDoc classDoc, Element parent) {
            Document document = parent.getOwnerDocument();
    
            Element title = document.createElement("title");
            parent.appendChild(title);
            title.appendChild(document.createTextNode(classDoc.getSimpleName()));
    
            addApiDocumentationLink(classDoc, parent, document);
            addSubtypeLinks(classDoc, parent, document);
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiReportTask.kt

            srcDirs.from(******@****.***s)
            htmlReportFile = ******@****.***portFile
            textReportFile = ******@****.***portFile
            title = this@IncubatingApiReportTask.title
            releasedVersionsFile = ******@****.***edVersionsFile
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 30 09:32:11 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  8. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportParameter.kt

    
    interface IncubatingApiReportParameter : WorkParameters {
        val srcDirs: ConfigurableFileCollection
        val htmlReportFile: RegularFileProperty
        val textReportFile: RegularFileProperty
        val title: Property<String>
        val releasedVersionsFile: RegularFileProperty
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        richReport({
            it.includedClasses = toPatterns(PublicApi.includes + PublicKotlinDslApi.includes)
            it.excludedClasses = toPatterns(PublicApi.excludes + PublicKotlinDslApi.excludes)
    
            it.title = "Binary compatibility report for Gradle ${isSnapshot.get() ? "${baseVersion.get()}-SNAPSHOT" : version} since ${compatibilityBaselineVersion}"
            it.destinationDir = file("$buildDir/reports/binary-compatibility")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 11 12:20:44 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top