Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for cdata (0.19 sec)

  1. src/html/template/css_test.go

    		{"#000", "#000"},
    		{"#48f", "#48f"},
    		{"#123456", "#123456"},
    		{"U+00-FF, U+980-9FF", "U+00-FF, U+980-9FF"},
    		{"color: red", "color: red"},
    		{"<!--", "ZgotmplZ"},
    		{"-->", "ZgotmplZ"},
    		{"<![CDATA[", "ZgotmplZ"},
    		{"]]>", "ZgotmplZ"},
    		{"</style", "ZgotmplZ"},
    		{`"`, "ZgotmplZ"},
    		{`'`, "ZgotmplZ"},
    		{"`", "ZgotmplZ"},
    		{"\x00", "ZgotmplZ"},
    		{"/* foo */", "ZgotmplZ"},
    		{"//", "ZgotmplZ"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

      xml.namespace="http://maven.apache.org/PLUGIN/${version}"
      xml.schemaLocation="https://maven.apache.org/xsd/plugin-${version}.xsd">
      <id>plugin</id>
      <name>PluginDescriptor</name>
      <description><![CDATA[
        Maven 4 Plugin descriptor, stored in {@code META-INF/maven/plugin.xml} in a plugin's jar artifact.
        This descriptor is generally using the information contained in the annotations of the plugin api.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. src/encoding/xml/typeinfo.go

    	if len(tokens) == 1 {
    		finfo.flags = fElement
    	} else {
    		tag = tokens[0]
    		for _, flag := range tokens[1:] {
    			switch flag {
    			case "attr":
    				finfo.flags |= fAttr
    			case "cdata":
    				finfo.flags |= fCDATA
    			case "chardata":
    				finfo.flags |= fCharData
    			case "innerxml":
    				finfo.flags |= fInnerXML
    			case "comment":
    				finfo.flags |= fComment
    			case "any":
    				finfo.flags |= fAny
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

                switch (next) {
                    case XMLStreamReader.SPACE:
                    case XMLStreamReader.COMMENT:
                    case XMLStreamReader.PROCESSING_INSTRUCTION:
                    case XMLStreamReader.CDATA:
                    case XMLStreamReader.CHARACTERS:
                        continue;
                    case XMLStreamReader.START_ELEMENT:
                    case XMLStreamReader.END_ELEMENT:
                        return next;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/html/template/js.go

    		errStr = strings.ReplaceAll(errStr, "<!--", `\x3C!--`)
    		return fmt.Sprintf(" /* %s */null ", errStr)
    	}
    
    	// TODO: maybe post-process output to prevent it from containing
    	// "<!--", "-->", "<![CDATA[", "]]>", or "</script"
    	// in case custom marshalers produce output containing those.
    	// Note: Do not use \x escaping to save bytes because it is not JSON compatible and this escaper
    	// supports ld+json content-type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/mdo/reader.vm

                switch (next) {
                    case XMLStreamReader.SPACE:
                    case XMLStreamReader.COMMENT:
                    case XMLStreamReader.PROCESSING_INSTRUCTION:
                    case XMLStreamReader.CDATA:
                    case XMLStreamReader.CHARACTERS:
                        continue;
                    case XMLStreamReader.START_ELEMENT:
                    case XMLStreamReader.END_ELEMENT:
                        return next;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal.go

    // writing nothing. Marshal handles all other data by writing one or more XML
    // elements containing the data.
    //
    // The name for the XML elements is taken from, in order of preference:
    //   - the tag on the XMLName field, if the data is a struct
    //   - the value of the XMLName field of type [Name]
    //   - the tag of the struct field used to obtain the data
    //   - the name of the struct field used to obtain the data
    //   - the name of the marshaled type
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/testdata/script/mod_perm.txt

    go list ./...
    ! stdout _data
    
    # skip in conditions where chmod 0 may not work.
    # plan9 should be fine, but copied from list_perm.txt unchanged.
    [root] skip
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # go list should work with unreadable _data directory.
    chmod 0 _data
    go list ./...
    ! stdout _data
    
    -- go.mod --
    module m
    
    -- x.go --
    package m
    
    -- _data/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 412 bytes
    - Viewed (0)
  10. src/cmd/internal/obj/plist.go

    func (ctxt *Link) EmitEntryStackMap(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := Appendp(p, newprog)
    	pcdata.Pos = s.Func().Text.Pos
    	pcdata.As = APCDATA
    	pcdata.From.Type = TYPE_CONST
    	pcdata.From.Offset = abi.PCDATA_StackMapIndex
    	pcdata.To.Type = TYPE_CONST
    	pcdata.To.Offset = -1 // pcdata starts at -1 at function entry
    
    	return pcdata
    }
    
    // Similar to EmitEntryLiveness, but just emit unsafe point map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top