2004 All-Ireland Senior B Hurling Championship
The All-Ireland Senior B Hurling Championship 2004 was the 26th staging of the All-Ireland Senior B Hurling Championship, Ireland's secondary hurling knock-out competition. Kildare won the championship, beating Mayo 3-14 to 3-7 in the final at Croke Park, Dublin.
Country | |
---|---|
Champions | Kildare |
Runners-up | Mayo |
← 2003 |
Results
All-Ireland Senior B Hurling Championship
Semifinal | Final | |||||||
1C | |
3-07 | ||||||
1L | |
1-18 | 1L | |
3-14 | |||
2L | |
3-08 |
Kildare | 3-14 – 3-7 | Mayo |
---|---|---|
T. Murphy (2-0), A. McAndrew (0-5), B. Byrne (1-1), B. White (0-3), C. Buggy (0-2), E. Denieffe (0-1), C. Divilly (0-1), J. Brennan (0-1). | A. Freeman (1-2), K. Higgins (0-5), S. Broderick (1-0), P. Higgins (1-0). |
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
gollark: Somewhat? There doesn't seem to be a better way to do it.
gollark: Hold on, I worked on a tiny bit of Go code, I'll dredge some up as a sample.
gollark: It does not avoid those. You just reimplement them oddly.
References
- Donegan, Des, The Complete Handbook of Gaelic Games (DBA Publications Limited, 2005).
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.