mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 14:24:39 +00:00
cd1b613352
* Update AWS SDK to use PCA features. * Add AWS PCA provider * Add plumbing for config, config validation tests, add test for inheriting existing CA resources created by user * Unparallel the tests so we don't exhaust PCA limits * Merge updates * More aggressive polling; rate limit pass through on sign; Timeout on Sign and CA create * Add AWS PCA docs * Fix Vault doc typo too * Doc typo * Apply suggestions from code review Co-Authored-By: R.B. Boyer <rb@hashicorp.com> Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com> * Doc fixes; tests for erroring if State is modified via API * More review cleanup * Uncomment tests! * Minor suggested clean ups
31 lines
458 B
Go
31 lines
458 B
Go
package ini
|
|
|
|
func isNewline(b []rune) bool {
|
|
if len(b) == 0 {
|
|
return false
|
|
}
|
|
|
|
if b[0] == '\n' {
|
|
return true
|
|
}
|
|
|
|
if len(b) < 2 {
|
|
return false
|
|
}
|
|
|
|
return b[0] == '\r' && b[1] == '\n'
|
|
}
|
|
|
|
func newNewlineToken(b []rune) (Token, int, error) {
|
|
i := 1
|
|
if b[0] == '\r' && isNewline(b[1:]) {
|
|
i++
|
|
}
|
|
|
|
if !isNewline([]rune(b[:i])) {
|
|
return emptyToken, 0, NewParseError("invalid new line token")
|
|
}
|
|
|
|
return newToken(TokenNL, b[:i], NoneType), i, nil
|
|
}
|