Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestContextForChannel (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    					} else {
    						if got != tt.want[i] {
    							t.Errorf("Backoff.Step(%d) = %v, want %v", i, got, tt.want)
    							continue
    						}
    					}
    				}
    			})
    		}
    	}
    }
    
    func TestContextForChannel(t *testing.T) {
    	var wg sync.WaitGroup
    	parentCh := make(chan struct{})
    	done := make(chan struct{})
    
    	for i := 0; i < 3; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top