Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for xslt (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/math/rand/v2/pcg.go

    	hi, _ = bits.Add64(hi, incHi, c)
    	p.lo = lo
    	p.hi = hi
    	return hi, lo
    }
    
    // Uint64 return a uniformly-distributed random uint64 value.
    func (p *PCG) Uint64() uint64 {
    	hi, lo := p.next()
    
    	// XSL-RR would be
    	//	hi, lo := p.next()
    	//	return bits.RotateLeft64(lo^hi, -int(hi>>58))
    	// but Numpy uses DXSM and O'Neill suggests doing the same.
    	// See https://github.com/golang/go/issues/21835#issuecomment-739065688
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  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. 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)
  10. gradle/verification-metadata.xml

                <pgp value="5B131E826582CF79510DAA11CD3E539F208832D0"/>
             </artifact>
          </component>
          <component group="net.sf.docbook" name="docbook-xsl" version="1.75.2">
             <artifact name="docbook-xsl-1.75.2-resources.zip">
                <sha256 value="eea2df391d11dcf3732d2b9ac1c344d527c955984824c08da4afdcd5acf92d03" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top