func strconv.ParseBool

22 uses

	strconv (current package)
		atob.go#L10: func ParseBool(str string) (bool, error) {

	cloud.google.com/go/cloudtasks/apiv2
		doc.go#L70: 	b, err := strconv.ParseBool(raw)

	cloud.google.com/go/container/apiv1
		doc.go#L71: 	b, err := strconv.ParseBool(raw)

	cloud.google.com/go/errorreporting/apiv1beta1
		doc.go#L74: 	b, err := strconv.ParseBool(raw)

	cloud.google.com/go/secretmanager/apiv1
		doc.go#L71: 	b, err := strconv.ParseBool(raw)

	cloud.google.com/go/trace/apiv2
		doc.go#L74: 	b, err := strconv.ParseBool(raw)

	database/sql/driver
		types.go#L68: 		b, err := strconv.ParseBool(s)
		types.go#L74: 		b, err := strconv.ParseBool(string(s))

	encoding/xml
		read.go#L653: 		value, err := strconv.ParseBool(strings.TrimSpace(string(src)))

	flag
		flag.go#L117: 	v, err := strconv.ParseBool(s)

	github.com/aws/aws-sdk-go/aws/endpoints
		v3model.go#L329: 	v, err := strconv.ParseBool(string(buf))

	github.com/aws/aws-sdk-go/aws/session
		env_config.go#L231: 	enableSharedConfig, _ := strconv.ParseBool(os.Getenv("AWS_SDK_LOAD_CONFIG"))
		env_config.go#L275: 		v, _ := strconv.ParseBool(cfg.csmEnabled)

	github.com/aws/aws-sdk-go/private/protocol/rest
		unmarshal.go#L215: 		b, err := strconv.ParseBool(header)

	github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
		unmarshal.go#L267: 		v, err := strconv.ParseBool(node.Text)

	github.com/go-redis/redis/v8
		command.go#L295: 		return strconv.ParseBool(val)

	github.com/jackc/pgtype
		bool.go#L32: 		bb, err := strconv.ParseBool(value)

	github.com/jackc/pgx/v4
		conn.go#L169: 		if b, err := strconv.ParseBool(s); err == nil {

	github.com/prometheus/procfs
		crypto.go#L86: 				b, err := strconv.ParseBool(value)

	golang.org/x/net/trace
		events.go#L92: 		if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil {
		trace.go#L213: 		if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil {
		trace.go#L216: 		if exp, err := strconv.ParseBool(req.FormValue("rtraced")); err == nil {