Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TagPathError (0.34 sec)

  1. src/encoding/xml/typeinfo.go

    	}
    	tinfo.fields = append(tinfo.fields, *newf)
    	return nil
    }
    
    // A TagPathError represents an error in the unmarshaling process
    // caused by the use of field tags with conflicting paths.
    type TagPathError struct {
    	Struct       reflect.Type
    	Field1, Tag1 string
    	Field2, Tag2 string
    }
    
    func (e *TagPathError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

    	v, e any
    }{
    	{&BadPathTestA{}, &TagPathError{reflect.TypeFor[BadPathTestA](), "First", "items>item1", "Second", "items"}},
    	{&BadPathTestB{}, &TagPathError{reflect.TypeFor[BadPathTestB](), "First", "items>item1", "Second", "items>item1>value"}},
    	{&BadPathTestC{}, &TagPathError{reflect.TypeFor[BadPathTestC](), "First", "", "Second", "First"}},
    	{&BadPathTestD{}, &TagPathError{reflect.TypeFor[BadPathTestD](), "First", "", "Second", "First"}},
    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/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SyntaxError", Type, 0},
    		{"SyntaxError.Line", Field, 0},
    		{"SyntaxError.Msg", Field, 0},
    		{"TagPathError", Type, 0},
    		{"TagPathError.Field1", Field, 0},
    		{"TagPathError.Field2", Field, 0},
    		{"TagPathError.Struct", Field, 0},
    		{"TagPathError.Tag1", Field, 0},
    		{"TagPathError.Tag2", Field, 0},
    		{"Token", Type, 0},
    		{"TokenReader", Type, 10},
    		{"Unmarshal", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg encoding/xml, type SyntaxError struct, Msg string
    pkg encoding/xml, type TagPathError struct
    pkg encoding/xml, type TagPathError struct, Field1 string
    pkg encoding/xml, type TagPathError struct, Field2 string
    pkg encoding/xml, type TagPathError struct, Struct reflect.Type
    pkg encoding/xml, type TagPathError struct, Tag1 string
    pkg encoding/xml, type TagPathError struct, Tag2 string
    pkg encoding/xml, type Token interface {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top