Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for cdata (0.04 sec)

  1. 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)
  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. 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)
  4. src/encoding/xml/xml.go

    					}
    					break
    				}
    				b0, b1 = b1, b
    			}
    			data := d.buf.Bytes()
    			data = data[0 : len(data)-3] // chop -->
    			return Comment(data), nil
    
    		case '[': // <![
    			// Probably <![CDATA[.
    			for i := 0; i < 6; i++ {
    				if b, ok = d.mustgetc(); !ok {
    					return nil, d.err
    				}
    				if b != "CDATA["[i] {
    					d.err = d.syntaxError("invalid <![ sequence")
    					return nil, d.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

      xml.namespace="http://maven.apache.org/SETTINGS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/settings-${version}.xsd">
      <id>settings</id>
      <name>Settings</name>
      <description>
        <![CDATA[
        <p>This is a reference for the user-specific configuration for Maven.</p>
        <p>Includes things that should not be distributed with the <code>pom.xml</code> file, such as developer identity, along with
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/html.go

    			}
    		}
    	}
    	return nil, 0, false
    }
    
    func parseHTMLCDATA(s string, i int) (Inline, int, bool) {
    	// “A CDATA section consists of the string <![CDATA[,
    	// a string of characters not including the string ]]>, and the string ]]>.”
    	return parseHTMLMarker(s, i, "<![CDATA[", "]]>")
    }
    
    func parseHTMLDecl(p *parseState, s string, i int) (Inline, int, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. api/maven-api-metadata/src/main/mdo/metadata.mdo

      xml.namespace="http://maven.apache.org/METADATA/${version}"
      xml.schemaLocation="https://maven.apache.org/xsd/repository-metadata-${version}.xsd">
      <id>repository-metadata</id>
      <name>Metadata</name>
      <description><![CDATA[
        <p>Per-directory repository metadata <code>repository-metadata.xml</code>.</p>
        <p>A directory may represent 3 types of content: "groupId", "groupId/artifactId" or "groupId/artifactId/version".</p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    	"<t a=''",
    	"<t/><![",
    	"<t/><![C",
    	"<t/><![CDATA[d",
    	"<t/><![CDATA[d]",
    	"<t/><![CDATA[d]]",
    
    	// other Syntax errors
    	"<>",
    	"<t/a",
    	"<0 />",
    	"<?0 >",
    	//	"<!0 >",	// let the Token() caller handle
    	"</0>",
    	"<t 0=''>",
    	"<t a='&'>",
    	"<t a='<'>",
    	"<t>&nbspc;</t>",
    	"<t a>",
    	"<t a=>",
    	"<t a=v>",
    	//	"<![CDATA[d]]>",	// let the Token() caller handle
    	"<t></e>",
    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/main/java/org/codelibs/core/xml/DomUtil.java

         * @param cdataSection
         *            CDATAセクション。{@literal null}であってはいけません
         * @param buf
         *            文字列バッファ。{@literal null}であってはいけません
         */
        public static void appendCDATASection(final CDATASection cdataSection, final StringBuilder buf) {
            assertArgumentNotNull("cdataSection", cdataSection);
            assertArgumentNotNull("buf", buf);
    
            buf.append("<![CDATA[");
            buf.append(cdataSection.getData());
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. cmd/bucket-targets.go

    func parseBucketTargetConfig(bucket string, cdata, cmetadata []byte) (*madmin.BucketTargets, error) {
    	var (
    		data []byte
    		err  error
    		t    madmin.BucketTargets
    		meta map[string]string
    	)
    	if len(cdata) == 0 {
    		return nil, nil
    	}
    	data = cdata
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if len(cmetadata) != 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top