Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for link (0.15 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

         * classloader by {@link JApiCmpWorkerAction}, so there is no way to use a
         * normal property on the renderer instance and just set the location of the API file in it.
         *
         * Instead, we'll encode the path to the file in the description data field, as a link.  This is
         * useful regardless of this renderer's needs, since now there will be a link embedded in the report
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

            _ * classMetaData.rawCommentText >> ''' * line 1
     * line 2
    '''
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook) == '''<para>line 1
    line 2</para>'''
        }
    
        def removesTagBlockFromComment() {
            _ * classMetaData.rawCommentText >> ''' * line 1
     * @tag line 2
     * line 3
    '''
    
            when:
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 14.2K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy

        def ignoresWhitespaceAndEOLCharsBetweenJavadocTagNameAndValue() {
            when:
            lexer.pushText("* {@link\n *  Something}")
            lexer.visit(visitor)
    
            then:
            1 * visitor.onStartJavadocTag('link')
            1 * visitor.onText('Something')
            1 * visitor.onEndJavadocTag('link')
            1 * visitor.onEnd()
            0 * visitor._
        }
    
        def ignoresBadlyFormedHtmlElement() {
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                <tr>
                    <td>
                        <literal><link linkend="method1Id">methodName</link>()</literal>
                    </td>
                    <td>
                        <para>method description</para>
                    </td>
                </tr>
                <tr>
                    <td>
                        <literal><link linkend="method2Id">methodName</link>(p)</literal>
                    </td>
                    <td>
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

    import org.gradle.api.tasks.TaskAction
    import gradlebuild.docs.BuildableDOMCategory
    import gradlebuild.docs.DocGenerationException
    import gradlebuild.docs.XIncludeAwareXmlProvider
    import gradlebuild.docs.dsl.links.ClassLinkMetaData
    import gradlebuild.docs.dsl.links.LinkMetaData
    import gradlebuild.docs.dsl.source.model.ClassMetaData
    import gradlebuild.docs.model.ClassMetaDataRepository
    import gradlebuild.docs.model.SimpleClassMetaDataRepository
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy

    import org.gradle.api.tasks.OutputFile
    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.TaskAction
    import gradlebuild.docs.dsl.links.ClassLinkMetaData
    import gradlebuild.docs.dsl.links.LinkMetaData
    import gradlebuild.docs.model.ClassMetaDataRepository
    import gradlebuild.docs.model.SimpleClassMetaDataRepository
    import org.w3c.dom.Document
    import org.w3c.dom.Element
    /**
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.6K bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

        def "validates present files for javadoc links"() {
            given:
            sampleDoc << """
    === Valid Javadoc Links
    
    Be sure to see: `@link:{javadocPath}/org/gradle/api/tasks/InputDirectory.html[InputDirectory]`
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Nov 28 22:01:54 GMT 2022
    - 7.8K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ExtractDslMetaDataTask.groovy

    import org.gradle.api.tasks.TaskAction
    
    /**
     * Extracts meta-data from the Groovy and Java source files which make up the Gradle API. Persists the meta-data to a file
     * for later use in generating documentation for the DSL, such as by {@link gradlebuild.docs.dsl.docbook.AssembleDslDocTask}.
     */
    @CacheableTask
    abstract class ExtractDslMetaDataTask extends SourceTask {
        @OutputFile
        abstract RegularFileProperty getDestinationFile();
    
        /**
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Jan 08 12:45:57 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  9. .github/workflows/CheckBadMerge.groovy

                for (String line in mergeCommitFileLines) {
                    if (line.trim().isEmpty()) {
                        continue
                    }
                    if (!masterCommitFileLines.contains(line) && releaseCommitFileLines.contains(line)) {
                        println("Found bad file $filePath in merge commit $mergeCommit: '$line' only exists in $releaseCommit but not in $masterCommit")
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/LinkRendererTest.groovy

            when:
            def link = renderer.link(type('java.util.List', true), listener)
    
            then:
            format(link) == '<classname><ulink url="https://docs.oracle.com/javase/javaVersion/docs/api/java/util/List.html"><classname>List</classname></ulink>[]</classname>'
        }
    
        def rendersLinkToPrimitiveType() {
            when:
            def link = renderer.link(type('boolean'), listener)
    
            then:
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.9K bytes
    - Viewed (0)
Back to top