Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for structtag (0.24 sec)

  1. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/stdmethods"
    	"golang.org/x/tools/go/analysis/passes/stdversion"
    	"golang.org/x/tools/go/analysis/passes/stringintconv"
    	"golang.org/x/tools/go/analysis/passes/structtag"
    	"golang.org/x/tools/go/analysis/passes/testinggoroutine"
    	"golang.org/x/tools/go/analysis/passes/tests"
    	"golang.org/x/tools/go/analysis/passes/timeformat"
    	"golang.org/x/tools/go/analysis/passes/unmarshal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/flagdefs.go

    	"rangeloops":       true,
    	"shift":            true,
    	"sigchanyzer":      true,
    	"slog":             true,
    	"stdmethods":       true,
    	"stdversion":       true,
    	"stringintconv":    true,
    	"structtag":        true,
    	"testinggoroutine": true,
    	"tests":            true,
    	"timeformat":       true,
    	"unmarshal":        true,
    	"unreachable":      true,
    	"unsafeptr":        true,
    	"unusedresult":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/modules.txt

    golang.org/x/tools/go/analysis/passes/slog
    golang.org/x/tools/go/analysis/passes/stdmethods
    golang.org/x/tools/go/analysis/passes/stdversion
    golang.org/x/tools/go/analysis/passes/stringintconv
    golang.org/x/tools/go/analysis/passes/structtag
    golang.org/x/tools/go/analysis/passes/testinggoroutine
    golang.org/x/tools/go/analysis/passes/tests
    golang.org/x/tools/go/analysis/passes/timeformat
    golang.org/x/tools/go/analysis/passes/unmarshal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. hack/tools/go.mod

    	github.com/dnephin/pflag v1.0.7 // indirect
    	github.com/esimonov/ifshort v1.0.4 // indirect
    	github.com/ettle/strcase v0.2.0 // indirect
    	github.com/fatih/color v1.16.0 // indirect
    	github.com/fatih/structtag v1.2.0 // indirect
    	github.com/firefart/nonamedreturns v1.0.4 // indirect
    	github.com/fsnotify/fsnotify v1.5.4 // indirect
    	github.com/fzipp/gocyclo v0.6.0 // indirect
    	github.com/ghostiam/protogetter v0.3.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	Type      Type      // field type
    	Tag       StructTag // field tag string
    	Offset    uintptr   // offset within struct, in bytes
    	Index     []int     // index sequence for Type.FieldByIndex
    	Anonymous bool      // is an embedded field
    }
    
    // IsExported reports whether the field is exported.
    func (f StructField) IsExported() bool {
    	return f.PkgPath == ""
    }
    
    // A StructTag is the tag string in a struct field.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/vet/vet_test.go

    		"bool",
    		"buildtag",
    		"cgo",
    		"composite",
    		"copylock",
    		"deadcode",
    		"directive",
    		"httpresponse",
    		"lostcancel",
    		"method",
    		"nilfunc",
    		"print",
    		"shift",
    		"slog",
    		"structtag",
    		"testingpkg",
    		// "testtag" has its own test
    		"unmarshal",
    		"unsafeptr",
    		"unused",
    	} {
    		pkg := pkg
    		t.Run(pkg, func(t *testing.T) {
    			t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. schema/field.go

    	Scale                  int
    	IgnoreMigration        bool
    	FieldType              reflect.Type
    	IndirectFieldType      reflect.Type
    	StructField            reflect.StructField
    	Tag                    reflect.StructTag
    	TagSettings            map[string]string
    	Schema                 *Schema
    	EmbeddedSchema         *Schema
    	OwnerSchema            *Schema
    	ReflectValueOf         func(context.Context, reflect.Value) reflect.Value
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. hack/tools/go.sum

    github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM=
    github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE=
    github.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4=
    github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94=
    github.com/firefart/nonamedreturns v1.0.4 h1:abzI1p7mAEPYuR4A+VLKn4eNDOycjYo2phmY9sfv40Y=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	if gotA != wantA || gotB != wantB {
    		t.Errorf("function called with (%v, %v), want (%v, %v)", gotA, gotB, wantA, wantB)
    	}
    }
    
    var tagGetTests = []struct {
    	Tag   StructTag
    	Key   string
    	Value string
    }{
    	{`protobuf:"PB(1,2)"`, `protobuf`, `PB(1,2)`},
    	{`protobuf:"PB(1,2)"`, `foo`, ``},
    	{`protobuf:"PB(1,2)"`, `rotobuf`, ``},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*ValueError).Error", Method, 0},
    		{"(ChanDir).String", Method, 0},
    		{"(Kind).String", Method, 0},
    		{"(Method).IsExported", Method, 17},
    		{"(StructField).IsExported", Method, 17},
    		{"(StructTag).Get", Method, 0},
    		{"(StructTag).Lookup", Method, 7},
    		{"(Value).Addr", Method, 0},
    		{"(Value).Bool", Method, 0},
    		{"(Value).Bytes", Method, 0},
    		{"(Value).Call", Method, 0},
    		{"(Value).CallSlice", Method, 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)
Back to top