Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for reqChan (0.21 sec)

  1. pkg/xds/server.go

    	initialized chan struct{}
    
    	// stop can be used to end the connection manually via debug endpoints. Only to be used for testing.
    	stop chan struct{}
    
    	// reqChan is used to receive discovery requests for this connection.
    	reqChan chan *discovery.DiscoveryRequest
    
    	// errorChan is used to process error during discovery request processing.
    	errorChan chan error
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/runtime/stack_test.go

    	const (
    		R = 4
    		G = 200
    		S = 5
    	)
    	for i := 0; i < R; i++ {
    		var reqchans [G]chan int
    		done := make(chan struct{})
    		for j := 0; j < G; j++ {
    			reqchans[j] = make(chan int)
    			go growing(reqchans[j], done)
    		}
    		for s := 0; s < S; s++ {
    			for j := 0; j < G; j++ {
    				reqchans[j] <- 1 << uint(s)
    			}
    			for j := 0; j < G; j++ {
    				<-done
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Fatalf("Failed to create watch: %v", err)
    	}
    	defer w.Stop()
    
    	received := 0
    	resChan := w.ResultChan()
    	for event := range resChan {
    		received++
    		t.Logf("event type: %v, events received so far: %d", event.Type, received)
    		if event.Type != watch.Added {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. RELEASE.md

    Phat Tran, Piotr Zierhoffer, piyushdatta, Pnikam-Cad, Prashant Kumar, Prateek
    Gupta, PratsBhatt, Pravin Karandikar, qqq.jq, QQ喵, Quintin, Rama Ketineni,
    ravikyram, Rehan Guha, rhdong, rmothukuru, Roger Cheng, Rohit Santhanam, rposts,
    Rsanthanam-Amd, rsun, Rsun-Bdti, Ryan Kuester, ryanking13, Saduf2019, Sami Kama,
    Samuel Marks, Scott Tseng, Sean Moriarity, Sergey Popov, Sergii Khomenko, Sheng,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top