Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for cdat4 (0.16 sec)

  1. 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)
  2. 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)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

                    .assertStdout(containsString(
                        "< html allowed, cdata closing token ]]> encoded!\n" +
                        "no EOL, non-asci char: ż\n" +
                        "xml entity: &amp;"
                    ))
                    .assertStderr(equalTo("< html allowed, cdata closing token ]]> encoded!\n"))
        }
    
        String lineNumberOf(String text) {
            int i = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

      <expressions>
        <expression>
          <syntax>settings.offline</syntax>
          <configuration>
            <![CDATA[
        <offline>true</offline>
        ]]></configuration>
          <description>
            <![CDATA[
          Flags the system as offline, to prevent accessing the network to resolve artifacts or execute plugins.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/main/mdo/extension.mdo

          <version>1.0.0</version>
          <description><![CDATA[Root element of the <code>extension.xml</code> file.]]></description>
          <fields>
            <field>
              <name>exportedPackages</name>
              <version>1.0.0</version>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/image/png/paeth.go

    		return b
    	}
    	return c
    }
    
    // filterPaeth applies the Paeth filter to the cdat slice.
    // cdat is the current row's data, pdat is the previous row's data.
    func filterPaeth(cdat, pdat []byte, bytesPerPixel int) {
    	var a, b, c, pa, pb, pc int
    	for i := 0; i < bytesPerPixel; i++ {
    		a, c = 0, 0
    		for j := i; j < len(cdat); j += bytesPerPixel {
    			b = int(pdat[j])
    			pa = b - c
    			pb = a - c
    			pc = abs(pa + pb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

          <description>
            <![CDATA[
            The {@code <dependency>} element contains information about a dependency
            of the project.
            ]]>
          </description>
          <fields>
            <field>
              <name>groupId</name>
              <version>3.0.0+</version>
              <required>true</required>
              <description>
                <![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    	//    <g id="graph0" transform="...">
    	//    ...
    	//    </g>
    	//    </svg>
    	//
    	// Change it to
    	//
    	//    <svg width="100%" height="100%"
    	//     xmlns=...>
    
    	//    <script type="text/ecmascript"><![CDATA[` ..$(svgpan.JSSource)... `]]></script>`
    	//    <g id="viewport" transform="translate(0,0)">
    	//    <g id="graph0" transform="...">
    	//    ...
    	//    </g>
    	//    </g>
    	//    </svg>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top