Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for innerxml (0.14 sec)

  1. src/encoding/xml/marshal_test.go

    	CDATA any `xml:",cdata"`
    	T2    T2
    }
    
    type IndirInnerXML struct {
    	T1       T1
    	InnerXML *string `xml:",innerxml"`
    	T2       T2
    }
    
    type DirectInnerXML struct {
    	T1       T1
    	InnerXML string `xml:",innerxml"`
    	T2       T2
    }
    
    type IfaceInnerXML struct {
    	T1       T1
    	InnerXML any `xml:",innerxml"`
    	T2       T2
    }
    
    type IndirElement struct {
    	T1      T1
    	Element *string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

    	Rel  string `xml:"rel,attr,omitempty"`
    	Href string `xml:"href,attr"`
    }
    
    type Person struct {
    	Name     string `xml:"name"`
    	URI      string `xml:"uri"`
    	Email    string `xml:"email"`
    	InnerXML string `xml:",innerxml"`
    }
    
    type Text struct {
    	Type string `xml:"type,attr,omitempty"`
    	Body string `xml:",chardata"`
    }
    
    var atomFeed = Feed{
    	XMLName: Name{"http://www.w3.org/2005/Atom", "feed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. src/encoding/xml/typeinfo.go

    			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
    			case "omitempty":
    				finfo.flags |= fOmitEmpty
    			}
    		}
    
    		// Validate the flags used.
    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. misc/ios/go_ios_exec.go

    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		os.Stderr.Write(out)
    		return fmt.Errorf("ideviceimagemounter: %v", err)
    	}
    	var info struct {
    		Dict struct {
    			Data []byte `xml:",innerxml"`
    		} `xml:"dict"`
    	}
    	if err := xml.Unmarshal(out, &info); err != nil {
    		return fmt.Errorf("mountDevImage: failed to decode mount information: %v", err)
    	}
    	dict, err := parsePlistDict(info.Dict.Data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  5. src/encoding/xml/read.go

    // In the rules, the tag of a field refers to the value associated with the
    // key 'xml' in the struct field's tag (see the example above).
    //
    //   - If the struct has a field of type []byte or string with tag
    //     ",innerxml", Unmarshal accumulates the raw XML nested inside the
    //     element in that field. The rest of the rules still apply.
    //
    //   - If the struct has a field named XMLName of type Name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal.go

    //     not as an XML element.
    //   - a field with tag ",cdata" is written as character data
    //     wrapped in one or more <![CDATA[ ... ]]> tags, not as an XML element.
    //   - a field with tag ",innerxml" is written verbatim, not subject
    //     to the usual marshaling procedure.
    //   - a field with tag ",comment" is written as an XML comment, not
    //     subject to the usual marshaling procedure. It must not contain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. docs/en/docs/js/termynal.js

            restart.onclick = (e) => {
                e.preventDefault()
                this.container.innerHTML = ''
                this.init()
            }
            restart.href = '#'
            restart.setAttribute('data-terminal-control', '')
            restart.innerHTML = "restart ↻"
            return restart
        }
    
        generateFinish() {
            const finish = document.createElement('a')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/MultiSectionHandler.groovy

        @Override
        String generateSection(GradleDsl dsl) {
            if (sectionName) {
                def name = escapeSectionName(dsl)
                """${name} {
                ${innerDsl(dsl)}
            }
            """
            }
        }
    
        protected String innerDsl(GradleDsl dsl) {
            sections.collect { it.generateSection(dsl) }.join("\n            ")
        }
    
        private String escapeSectionName(GradleDsl dsl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. docs/en/docs/js/custom.js

        if (div) {
            data = await getData()
            div.innerHTML = '<ul></ul>'
            const ul = document.querySelector('.github-topic-projects ul')
            data.forEach(v => {
                if (v.full_name === 'tiangolo/fastapi') {
                    return
                }
                const li = document.createElement('li')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/html5shiv.min.js

    /**
    * @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
    */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 31 23:16:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
Back to top