MCPcopy Index your code
hub / github.com/coder/coder / Error

Method Error

enterprise/wsproxy/wsproxy.go:687–694  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

685type optErrors []error
686
687func (e optErrors) Error() string {
688 var b strings.Builder
689 for _, err := range e {
690 _, _ = b.WriteString(err.Error())
691 _, _ = b.WriteString("\n")
692 }
693 return b.String()
694}
695
696func (e *optErrors) Required(name string, v any) {
697 if v == nil {

Callers 15

TestEnterpriseMembersFunction · 0.45
loopMethod · 0.45
subscribeMethod · 0.45
syncReplicasMethod · 0.45
TestDERPFunction · 0.45
pingSiblingReplicasFunction · 0.45
handleRegisterFailureMethod · 0.45
healthReportMethod · 0.45
StartMethod · 0.45
failureFnMethod · 0.45
NewRemoteConnectorFunction · 0.45

Calls 2

WriteStringMethod · 0.80
StringMethod · 0.45