Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for xslt (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/riscv64.s

    	ADD	X6, X5, X7				// b3836200
    	ADD	X5, X6					// 33035300
    	ADD	$2047, X5, X6				// 1383f27f
    	ADD	$-2048, X5, X6				// 13830280
    	ADD	$2047, X5				// 9382f27f
    	ADD	$-2048, X5				// 93820280
    
    	SLT	X6, X5, X7				// b3a36200
    	SLT	$55, X5, X7				// 93a37203
    	SLTU	X6, X5, X7				// b3b36200
    	SLTU	$55, X5, X7				// 93b37203
    
    	AND	X6, X5, X7				// b3f36200
    	AND	X5, X6					// 33735300
    	AND	$1, X5, X6				// 13f31200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/text/template/funcs.go

    }
    
    // JavaScript escaping.
    
    var (
    	jsLowUni = []byte(`\u00`)
    	hex      = []byte("0123456789ABCDEF")
    
    	jsBackslash = []byte(`\\`)
    	jsApos      = []byte(`\'`)
    	jsQuot      = []byte(`\"`)
    	jsLt        = []byte(`\u003C`)
    	jsGt        = []byte(`\u003E`)
    	jsAmp       = []byte(`\u0026`)
    	jsEq        = []byte(`\u003D`)
    )
    
    // JSEscape writes to w the escaped JavaScript equivalent of the plain text data b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	// 2.4: Integer Computational Instructions
    	AADDI = obj.ABaseRISCV + obj.A_ARCHSPECIFIC + iota
    	ASLTI
    	ASLTIU
    	AANDI
    	AORI
    	AXORI
    	ASLLI
    	ASRLI
    	ASRAI
    	ALUI
    	AAUIPC
    	AADD
    	ASLT
    	ASLTU
    	AAND
    	AOR
    	AXOR
    	ASLL
    	ASRL
    	ASUB
    	ASRA
    
    	// 2.5: Control Transfer Instructions
    	AJAL
    	AJALR
    	ABEQ
    	ABNE
    	ABLT
    	ABLTU
    	ABGE
    	ABGEU
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x13, 0x1, 0x0, 0, 0x0}
    	case ASLLIUW:
    		return &inst{0x1b, 0x1, 0x0, 128, 0x4}
    	case ASLLIW:
    		return &inst{0x1b, 0x1, 0x0, 0, 0x0}
    	case ASLLW:
    		return &inst{0x3b, 0x1, 0x0, 0, 0x0}
    	case ASLT:
    		return &inst{0x33, 0x2, 0x0, 0, 0x0}
    	case ASLTI:
    		return &inst{0x13, 0x2, 0x0, 0, 0x0}
    	case ASLTIU:
    		return &inst{0x13, 0x3, 0x0, 0, 0x0}
    	case ASLTU:
    		return &inst{0x33, 0x3, 0x0, 0, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            file("src/main/resources/bad.properties") << """hello=World"""
        }
    
        private sampleStylesheet() {
            normaliseFileSeparators(resources.getResource('/checkstyle-custom-stylesheet.xsl').getAbsolutePath())
        }
    
        private static Matcher<String> containsClass(String className) {
            containsLine(containsString(className.replace(".", File.separator)))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "SEQZ", argLength: 1, reg: gp11, asm: "SEQZ"},                 // arg0 == 0, result is 0 or 1
    		{name: "SNEZ", argLength: 1, reg: gp11, asm: "SNEZ"},                 // arg0 != 0, result is 0 or 1
    		{name: "SLT", argLength: 2, reg: gp21, asm: "SLT"},                   // arg0 < arg1, result is 0 or 1
    		{name: "SLTI", argLength: 1, reg: gp11, asm: "SLTI", aux: "Int64"},   // arg0 < auxint, result is 0 or 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    The Scala plugin defaults to incremental compilation by integrating with https://github.com/typesafehub/zinc[Zinc], a standalone version of https://github.com/harrah/xsbt[sbt]'s incremental Scala compiler. If you want to disable the incremental compilation, set `force = true` in your build file:
    
    .Forcing all code to be compiled
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    	case ACMPGED:
    		return 0x0c2<<20 | 0x7<<15 // FCMP.SLE.D
    	case ACMPGEF:
    		return 0x0c1<<20 | 0x7<<15 // FCMP.SLE.S
    	case ACMPGTD:
    		return 0x0c2<<20 | 0x3<<15 // FCMP.SLT.D
    	case ACMPGTF:
    		return 0x0c1<<20 | 0x3<<15 // FCMP.SLT.S
    
    	case ASQRTF:
    		return 0x4511 << 10
    	case ASQRTD:
    		return 0x4512 << 10
    	}
    
    	if a < 0 {
    		c.ctxt.Diag("bad rrr opcode -%v", -a)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    }
    func rewriteValueRISCV64_OpLess16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less16 x y)
    	// result: (SLT (SignExt16to64 x) (SignExt16to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpRISCV64SLT)
    		v0 := b.NewValue0(v.Pos, OpSignExt16to64, typ.Int64)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/build.gradle

        userGuideTask 'xalan:xalan:2.7.1'
        userGuideTask 'xerces:xercesImpl:2.11.0'
        userGuideTask 'net.sf.xslthl:xslthl:2.0.1'
    
        userGuideStyleSheets 'net.sf.docbook:docbook-xsl:1.75.2:resources@zip'
    
        jquery "jquery:jquery.min:3.5.1@js"
    
        testImplementation project(":base-services")
        testImplementation project(":core")
        testImplementation libs.jsoup
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top