Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for visited (0.22 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

            def xslthlConfigFile = getStylesheetHighlightFile().get().asFile.toURI()
    
            // TODO: Implement this with the worker API
            workerLeaseService.runAsIsolatedTask({
                source.visit { FileVisitDetails fvd ->
                    if (fvd.isDirectory()) {
                        return
                    }
                    if (!fvd.getFile().getName().endsWith(".xml")) {
                        return
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 05 19:36:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

        }
    
        def parse(String source) {
            def lexer = new HtmlToXmlJavadocLexer(new BasicJavadocLexer(new JavadocScanner(source)))
            def result = new StringBuilder()
            lexer.visit(new JavadocLexer.TokenVisitor() {
                @Override
                void onStartHtmlElement(String name) {
                    result.append("<$name")
                }
    
                @Override
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/TypeMetaDataTest.groovy

            1 * visitor.visitText('<')
            1 * visitor.visitType('OtherType')
            1 * visitor.visitText('>')
            0 * visitor._
        }
    
        def visitsSignatureForWildcardType() {
            TypeMetaData.SignatureVisitor visitor = Mock()
            type.setWildcard()
    
            when:
            type.visitSignature(visitor)
    
            then:
            1 * visitor.visitText('?')
            0 * visitor._
        }
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.6K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy

            lexer.visit(visitor)
    
            then:
            1 * visitor.onStartJavadocTag('tag')
            1 * visitor.onText('some value')
            1 * visitor.onEndJavadocTag('tag')
            1 * visitor.onEnd()
            0 * visitor._
        }
    
        def javadocTagCanBeEmpty() {
            when:
            lexer.pushText("{@empty}")
            lexer.visit(visitor)
    
            then:
            1 * visitor.onStartJavadocTag('empty')
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6K bytes
    - Viewed (0)
Back to top