Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 193 for cdata (0.09 sec)

  1. 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)
  2. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

         * <origin><![CDATA[
         * <distributionManagement>
         * <repository>
         * <id>some-repo</id>
         * <url>scp://host/path</url>
         * </repository>
         * <snapshotRepository>
         * <id>some-snap-repo</id>
         * <url>scp://host/snapshot-path</url>
         * </snapshotRepository>
         * </distributionManagement>
         * ]]></origin>
         * <usage><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. maven-embedder/src/main/mdo/core-extensions.mdo

      xml.namespace="http://maven.apache.org/EXTENSIONS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/core-extensions-${version}.xsd">
    
      <id>core-extensions</id>
      <name>CoreExtensions</name>
      <description><![CDATA[
      <p>This is a reference for the Core Extensions descriptor.</p>
      <p>The default location for the Core Extensions descriptor file is <code>${maven.projectBasedir}/.mvn/extensions.xml</code></p>
      ]]></description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

      <expressions>
        <expression>
          <syntax>localRepository</syntax>
          <configuration>
            <![CDATA[
          Inside ~/.m2/settings.xml:
    
          <localRepository>/path/to/local/repository</localRepository>
          ]]></configuration>
          <description>The ArtifactRepository instance referencing the local artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

      <name>Maven Integration Test :: MNG-3839</name>
      <description>
        Test that POM parsing properly coalesces text data.
      </description>
    
      <properties>
        <!--
        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "<a href=\"http://[2h:23:3]\">link</a>"             | "invalid URLs"
            "<a href=\"dir1/subdir1\">link</a>"                 | "links to nested subdirectories"
            "<![CDATA[<a href=\"directory2\">directory2</a>]]>" | "links in CDATA blocks"
            "<a href=\"#anchor\">link</a>"                      | "anchor links"
            "<a name=\"anchorname\">headline</a>"               | "anchor definitions"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

     * Based on https://github.com/chriskempson/tomorrow-theme
     * @author Rose Pritchard
     */
    
    .token.comment,
    .token.block-comment,
    .token.prolog,
    .token.doctype,
    .token.cdata {
        color: #999;
    }
    
    .token.punctuation {
        color: #ccc;
    }
    
    .token.tag,
    .token.attr-name,
    .token.namespace,
    .token.deleted {
        color: #e2777a;
    }
    
    .token.function-name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top