Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for xslt (0.04 sec)

  1. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/config/xsl/checkstyle-custom.xsl

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 319 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/config/xsl/checkstyle-custom.xsl

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 319 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/build.gradle

    // end::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
            xml.required = false
            html.required = true
            html.stylesheet resources.text.fromFile('config/xsl/checkstyle-custom.xsl')
    // tag::enable-checkstyle-sarif-report[]
        }
    }
    // end::enable-checkstyle-sarif-report[]
    // end::customize-checkstyle-report[]
    
    // tag::customize-pmd[]
    pmd {
        consoleOutput = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/resources/checkstyle-noframes-sorted.xsl

    Sterling Greene <******@****.***> 1692279701 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 17 13:41:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/resources/checkstyle-custom-stylesheet.xsl

    Tom Tresansky <******@****.***> 1687350218 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 319 bytes
    - Viewed (0)
  6. src/go/types/predicates.go

    		// different. The order of the methods is irrelevant.
    		if y, ok := y.(*Interface); ok {
    			xset := x.typeSet()
    			yset := y.typeSet()
    			if xset.comparable != yset.comparable {
    				return false
    			}
    			if !xset.terms.equal(yset.terms) {
    				return false
    			}
    			a := xset.methods
    			b := yset.methods
    			if len(a) == len(b) {
    				// Interface types are the only types where cycles can occur
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    // end::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
            xml.required = false
            html.required = true
            html.stylesheet = resources.text.fromFile("config/xsl/checkstyle-custom.xsl")
    // tag::enable-checkstyle-sarif-report[]
        }
    }
    // end::enable-checkstyle-sarif-report[]
    // end::customize-checkstyle-report[]
    
    // tag::customize-pmd[]
    pmd {
        isConsoleOutput = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

                    include "*.xsl"
                }
                from(archives.zipTree(getDocbookStylesheets().singleFile)) {
                    eachFile {
                        fcd -> fcd.path = fcd.path.replaceFirst("^docbook", "")
                    }
                }
                into(getTemporaryDir())
            }
    
            def stylesheetFile = new File(getTemporaryDir(), "dslHtml.xsl")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    		// The order of the methods is irrelevant.
    		if y, ok := y.(*Interface); ok {
    			xset := x.typeSet()
    			yset := y.typeSet()
    			if xset.comparable != yset.comparable {
    				return false
    			}
    			if !xset.terms.equal(yset.terms) {
    				return false
    			}
    			a := xset.methods
    			b := yset.methods
    			if len(a) == len(b) {
    				// Interface types are the only types where cycles can occur
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ScalaCompilerLoader.java

     * limitations under the License.
     */
    
    import java.net.URL;
    import java.net.URLClassLoader;
    
    // based on
    // https://github.com/lampepfl/dotty/blob/96401b68a8bce4c125859806b0c24a1ffe3cbc1e/sbt-bridge/src/xsbt/CompilerClassLoader.java
    public class ScalaCompilerLoader extends URLClassLoader {
        private final ClassLoader sbtLoader;
    
        public ScalaCompilerLoader(URL[] urls, ClassLoader sbtLoader) {
            super(urls, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top