Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EndElement (0.17 sec)

  1. src/encoding/xml/marshal_test.go

    }, {
    	desc: "end tag without start tag",
    	toks: []Token{
    		EndElement{Name{"foo", "bar"}},
    	},
    	err: "xml: end tag </bar> without start tag",
    }, {
    	desc: "mismatching end tag local name",
    	toks: []Token{
    		StartElement{Name{"", "foo"}, nil},
    		EndElement{Name{"", "bar"}},
    	},
    	err:  "xml: end tag </bar> does not match start tag <foo>",
    	want: `<foo>`,
    }, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    String confs = substitute(attributes.getValue("conf"));
    
                    // Only add confs if they are specified. if they aren't, endElement will handle this only if there are no conf defined in sub elements
                    if (confs != null && confs.length() > 0) {
                        String[] conf;
                        if ("*".equals(confs)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top