...

Source file src/github.com/onsi/ginkgo/v2/integration/_fixtures/profile_fixture/block_contest/block_contest.go

Documentation: github.com/onsi/ginkgo/v2/integration/_fixtures/profile_fixture/block_contest

     1  package block_contest
     2  
     3  func ReadTheChannel(c chan bool) {
     4  	<-c
     5  }
     6  
     7  func SlowReadTheChannel(c chan bool) {
     8  	<-c
     9  }
    10  

View as plain text