Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleWaitGroup (0.19 sec)

  1. src/sync/example_test.go

    )
    
    type httpPkg struct{}
    
    func (httpPkg) Get(url string) {}
    
    var http httpPkg
    
    // This example fetches several URLs concurrently,
    // using a WaitGroup to block until all the fetches are complete.
    func ExampleWaitGroup() {
    	var wg sync.WaitGroup
    	var urls = []string{
    		"http://www.golang.org/",
    		"http://www.google.com/",
    		"http://www.example.com/",
    	}
    	for _, url := range urls {
    		// Increment the WaitGroup counter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top