Lines Matching full:sends
45 It sends a State value to the status channel, to inform the StateMonitor
48 Finally, it sends the Resource pointer to the out channel. This can be
71 Inside main, a new goroutine sends one Resource per URL to pending
95 that allocates and sends one Resource per URL to pending.
97 The new goroutine is necessary because unbuffered channel sends and
98 receives are synchronous. That means these channel sends will block until
101 Were these sends performed in the main goroutine with fewer Pollers than
102 channel sends, the program would reach a deadlock situation, because
111 When a Poller is done with a Resource, it sends it on the complete channel.
129 a goroutine takes a channel, upon which it sends its return value
150 A time.Ticker is an object that repeatedly sends a value on a channel at a