MCPcopy
hub / github.com/grpc/grpc-go / fractionMatcher

Struct fractionMatcher

internal/xds/xdsclient/xdsresource/matcher.go:140–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140type fractionMatcher struct {
141 fraction int64 // real fraction is fraction/1,000,000.
142}
143
144func newFractionMatcher(fraction uint32) *fractionMatcher {
145 return &fractionMatcher{fraction: int64(fraction)}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected