Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for xslt (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    ====
    
    [[sec:checkstyle_customize_xsl]]
    == Customizing the HTML report
    
    The HTML report generated by the link:{groovyDslPath}/org.gradle.api.plugins.quality.Checkstyle.html[Checkstyle] task can be customized using a XSLT stylesheet, for example to highlight specific errors or change its appearance:
    
    .Customizing the HTML report
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/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.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/a.out.go

    	ABFPF
    	ABFPT
    
    	ABNE
    	ABREAK
    	ACLO
    	ACLZ
    
    	ACMPEQD
    	ACMPEQF
    
    	ACMPGED // ACMPGED -> fcmp.sle.d
    	ACMPGEF // ACMPGEF -> fcmp.sle.s
    	ACMPGTD // ACMPGTD -> fcmp.slt.d
    	ACMPGTF // ACMPGTF -> fcmp.slt.s
    
    	ALU12IW
    	ALU32ID
    	ALU52ID
    	APCALAU12I
    	APCADDU12I
    	AJIRL
    	ABGE
    	ABLT
    	ABLTU
    	ABGEU
    
    	ADIV
    	ADIVD
    	ADIVF
    	ADIVU
    	ADIVW
    
    	ALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    var nestedDirectivesInput = `
    <!DOCTYPE [<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">]>
    <!DOCTYPE [<!ENTITY xlt ">">]>
    <!DOCTYPE [<!ENTITY xlt "<">]>
    <!DOCTYPE [<!ENTITY xlt '>'>]>
    <!DOCTYPE [<!ENTITY xlt '<'>]>
    <!DOCTYPE [<!ENTITY xlt '">'>]>
    <!DOCTYPE [<!ENTITY xlt "'<">]>
    `
    
    var nestedDirectivesTokens = []Token{
    	CharData("\n"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/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.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (RotateLeft32 ...) => (ROLW ...)
    (RotateLeft64 ...) => (ROL  ...)
    
    (Less64  ...) => (SLT  ...)
    (Less32  x y) => (SLT  (SignExt32to64 x) (SignExt32to64 y))
    (Less16  x y) => (SLT  (SignExt16to64 x) (SignExt16to64 y))
    (Less8   x y) => (SLT  (SignExt8to64  x) (SignExt8to64  y))
    (Less64U ...) => (SLTU ...)
    (Less32U x y) => (SLTU (ZeroExt32to64 x) (ZeroExt32to64 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
Back to top