Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atc0005/help-requests
Repo used to showcase content for help requests and bug reports
https://github.com/atc0005/help-requests
Last synced: 6 days ago
JSON representation
Repo used to showcase content for help requests and bug reports
- Host: GitHub
- URL: https://github.com/atc0005/help-requests
- Owner: atc0005
- License: mit
- Created: 2021-04-11T12:57:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-11T13:54:20.000Z (over 3 years ago)
- Last Synced: 2024-04-30T05:47:59.108Z (6 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# help-requests
Repo used to showcase content for help requests and bug reports
## Table of contents
- [Go](#go)
- [Struct field alignment](#struct-field-alignment)## Go
### Struct field alignment
This example [here](go/struct-alignment/main.go) is intended to show how
current versions of Go (1.15.11, 1.16.3) report `fieldalignment` linting
errors for structs which appear (perhaps due to my ignorance) to already be
aligned properly.Structs:
```golang
type emailConfigAscending struct {
timeout time.Duration // 8 bytes
notificationRateLimit time.Duration // 8 bytes
template *template.Template // 8 bytes
serverPort int // 8 bytes
notificationRetries int // 8 bytes
notificationRetryDelay int // 8 bytes
server string // 16 bytes
senderAddress string // 16 bytes
clientIdentity string // 16 bytes
recipientAddresses []string // 24 bytes
}type emailConfigDescending struct {
recipientAddresses []string // 24 bytes
server string // 16 bytes
senderAddress string // 16 bytes
clientIdentity string // 16 bytes
timeout time.Duration // 8 bytes
notificationRateLimit time.Duration // 8 bytes
template *template.Template // 8 bytes
serverPort int // 8 bytes
notificationRetries int // 8 bytes
notificationRetryDelay int // 8 bytes
}
```Output:
```console
var "eCfgAscending.timeout" of type time.Duration has size 8 with Asignof 8 and Offsetof 0
var "eCfgAscending.notificationRateLimit" of type time.Duration has size 8 with Asignof 8 and Offsetof 8
var "eCfgAscending.template" of type *template.Template has size 8 with Asignof 8 and Offsetof 16
var "eCfgAscending.serverPort" of type int has size 8 with Asignof 8 and Offsetof 24
var "eCfgAscending.notificationRetries" of type int has size 8 with Asignof 8 and Offsetof 32
var "eCfgAscending.notificationRetryDelay" of type int has size 8 with Asignof 8 and Offsetof 40
var "eCfgAscending.server" of type string has size 16 with Asignof 8 and Offsetof 48
var "eCfgAscending.senderAddress" of type string has size 16 with Asignof 8 and Offsetof 64
var "eCfgAscending.clientIdentity" of type string has size 16 with Asignof 8 and Offsetof 80
var "eCfgAscending.recipientAddresses" of type []string has size 24 with Asignof 8 and Offsetof 96
var "eCfgAscending" of type main.emailConfigAscending has size 120 with Asignof 8var "eCfgDescending.recipientAddresses" of type []string has size 24 with Asignof 8 and Offsetof 0
var "eCfgDescending.server" of type string has size 16 with Asignof 8 and Offsetof 24
var "eCfgDescending.senderAddress" of type string has size 16 with Asignof 8 and Offsetof 40
var "eCfgDescending.clientIdentity" of type string has size 16 with Asignof 8 and Offsetof 56
var "eCfgDescending.timeout" of type time.Duration has size 8 with Asignof 8 and Offsetof 72
var "eCfgDescending.notificationRateLimit" of type time.Duration has size 8 with Asignof 8 and Offsetof 80
var "eCfgDescending.template" of type *template.Template has size 8 with Asignof 8 and Offsetof 88
var "eCfgDescending.serverPort" of type int has size 8 with Asignof 8 and Offsetof 96
var "eCfgDescending.notificationRetries" of type int has size 8 with Asignof 8 and Offsetof 104
var "eCfgDescending.notificationRetryDelay" of type int has size 8 with Asignof 8 and Offsetof 112
var "eCfgDescending" of type main.emailConfigDescending has size 120 with Asignof 8
```