Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for cdat4 (0.04 sec)

  1. src/image/png/writer.go

    	// in their enumeration order (ftNone, ftSub, ftUp, ftAverage, ftPaeth).
    	cdat0 := cr[0][1:]
    	cdat1 := cr[1][1:]
    	cdat2 := cr[2][1:]
    	cdat3 := cr[3][1:]
    	cdat4 := cr[4][1:]
    	pdat := pr[1:]
    	n := len(cdat0)
    
    	// The up filter.
    	sum := 0
    	for i := 0; i < n; i++ {
    		cdat2[i] = cdat0[i] - pdat[i]
    		sum += abs8(cdat2[i])
    	}
    	best := sum
    	filter := ftUp
    
    	// The Paeth filter.
    	sum = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterMergeRerunSpec.groovy

        <system-out><![CDATA[m2-out-1]]></system-out>
        <system-err><![CDATA[m2-err-1]]></system-err>
        <rerunFailure message="m2-message-2" type="ExceptionType">
          <stackTrace>m2-stackTrace-2</stackTrace>
          <system-out><![CDATA[m2-out-2]]></system-out>
          <system-err><![CDATA[m2-err-2]]></system-err>
        </rerunFailure>
      </testcase>
      <system-out><![CDATA[class-out]]></system-out>
      <system-err><![CDATA[class-err]]></system-err>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/xml/SimpleXmlWriterSpec.groovy

            writer.endCDATA()
            writer.endElement()
    
            then:
            xml == "<?xml version=\"1.0\" encoding=\"UTF-8\"?><root><![CDATA[丈, ]]>&#x1f603;<![CDATA[, and नि]]><![CDATA[x丈, नि, ]]>&#x1f603;<![CDATA[]]></root>"
        }
    
        def "writes CDATA"() {
            when:
            writer.startElement("root")
            writer.startElement("stuff")
    
            writer.startCDATA()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 14.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/mdo/profiles.mdo

              <description><![CDATA[The lists of the remote repositories]]>
              </description>
              <association>
                <type>Repository</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <name>pluginRepositories</name>
              <version>1.0.0</version>
              <description><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

        }
    
        public SimpleMarkupWriter startCDATA() throws IOException {
            if (context == Context.CData) {
                throw new IllegalStateException("Cannot start CDATA node, as current CDATA node has not been closed.");
            }
            maybeFinishStartTag();
            writeRaw("<![CDATA[");
            context = Context.CData;
            squareBrackets = 0;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
  6. src/image/png/reader.go

    					rcol := uint16(cdat[6*x+0])<<8 | uint16(cdat[6*x+1])
    					gcol := uint16(cdat[6*x+2])<<8 | uint16(cdat[6*x+3])
    					bcol := uint16(cdat[6*x+4])<<8 | uint16(cdat[6*x+5])
    					rgba64.SetRGBA64(x, y, color.RGBA64{rcol, gcol, bcol, 0xffff})
    				}
    			}
    		case cbTCA16:
    			for x := 0; x < width; x++ {
    				rcol := uint16(cdat[8*x+0])<<8 | uint16(cdat[8*x+1])
    				gcol := uint16(cdat[8*x+2])<<8 | uint16(cdat[8*x+3])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

            //output encoded:
            xml.contains('<system-out><![CDATA[with CDATA end token: ]]]]><![CDATA[> some ascii: ]]>&#x44d20;<![CDATA[ż]]></system-out>')
            xml.contains('<system-err><![CDATA[with ]]>&#x44e31;<![CDATA[CDATA end token: ]]]]><![CDATA[> some ascii: ż]]></system-err>')
        }
    
        def "writes results with no tests"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

            if (executionResult instanceof HtmlTestExecutionResult || outputAssociation == WITH_SUITE) {
                encoding
                        .assertStdout(equalTo("""< html allowed, cdata closing token ]]> encoded!
    no EOL, non-ascii char: ż
    xml entity: &amp;
    """))
                        .assertStderr(equalTo("< html allowed, cdata closing token ]]> encoded!\n"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/html/template/js_test.go

    		{[]string{"<!--", "</script>", "-->"}, `["\u003c!--","\u003c/script\u003e","--\u003e"]`, false},
    		{"<!--", `"\u003c!--"`, false},
    		{"-->", `"--\u003e"`, false},
    		{"<![CDATA[", `"\u003c![CDATA["`, false},
    		{"]]>", `"]]\u003e"`, false},
    		{"</script", `"\u003c/script"`, false},
    		{"\U0001D11E", "\"\U0001D11E\"", false}, // or "\uD834\uDD1E"
    		{nil, " null ", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    // If cdata == true, we are in a <![CDATA[ section and need to find ]]>.
    // On failure return nil and leave the error in d.err.
    func (d *Decoder) text(quote int, cdata bool) []byte {
    	var b0, b1 byte
    	var trunc int
    	d.buf.Reset()
    Input:
    	for {
    		b, ok := d.getc()
    		if !ok {
    			if cdata {
    				if d.err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top