MCPcopy Create free account
hub / github.com/featureform/featureform / String

Method String

runner/materialize.go:68–76  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

66 return complete
67}
68func (w WatcherMultiplex) String() string {
69 complete := 0
70 for _, completion := range w.CompletionList {
71 if completion.Complete() {
72 complete += 1
73 }
74 }
75 return fmt.Sprintf("%v complete out of %v", complete, len(w.CompletionList))
76}
77func (w WatcherMultiplex) Wait() error {
78 for _, completion := range w.CompletionList {
79 if err := completion.Wait(); err != nil {

Callers 1

TestWatcherMultiplexFunction · 0.95

Calls 1

CompleteMethod · 0.65

Tested by 1

TestWatcherMultiplexFunction · 0.76