2010 e-Boks Danish Open

The 2010 e-Boks Sony Ericsson Open was the first edition of the tennis tournament e-Boks Danish Open, an International-level tournament on the 2010 WTA Tour. It took place on indoor hard courts in Farum, Denmark from August 2 to August 8, 2010. The Danish top player Caroline Wozniacki won the singles title.

2010 e-Boks Danish Open
DateAugust 2 – August 8
Edition1st
Champions
Singles
Caroline Wozniacki
Doubles
Julia Görges / Anna-Lena Grönefeld

WTA Entrants

Seeds

Player Nationality Ranking* Seed
Caroline Wozniacki Denmark 3 1
Li Na China 10 2
Petra Kvitová Czech Republic 31 3
Tsvetana Pironkova Bulgaria 33 4
Julia Görges Germany 42 5
Polona Hercog Slovenia 48 6
Klára Zakopalová Czech Republic 50 7
Angelique Kerber Germany 53 8
  • Seedings are based on the rankings of July 19, 2010.

Other entrants

The following players received wildcards into the singles main draw:

The following players received entry from the qualifying draw:

Champions

Singles

Caroline Wozniacki def. Klára Zakopalová 6–2, 7–6(5)

  • It was Wozniacki's second title of the year and eighth of her career.

Doubles

Julia Görges / Anna-Lena Grönefeld def. Vitalia Diatchenko / Tatiana Poutchek, 6–4, 6–4

gollark: I think they're overused and not actually very good synchronization primitives. Please explain how you would use them.
gollark: Really? Hmm. Explain.
gollark: And it mutates some shared state.
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.

References

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.