Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for innerxml (0.26 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/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)
  4. 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)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/ConfigurationSpec.groovy

                case GradleDsl.KOTLIN:
                    def creation = isCreate.get()
                    def prefix =  creation ?"val $name by configurations.creating ":"${name}.run "
                    return """$prefix {
        ${innerDsl(dsl)}
    }"""
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/syscall/js/js_test.go

    		div.Call("setAttribute", "id", "myDiv")
    		document.Get("body").Call("appendChild", div)
    		myDiv := document.Call("getElementById", "myDiv")
    		myDiv.Set("innerHTML", data)
    
    		if got, want := myDiv.Get("innerHTML").String(), data; got != want {
    			b.Errorf("got %s, want %s", got, want)
    		}
    		document.Get("body").Call("removeChild", div)
    	}
    }
    
    func TestGlobal(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top