Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 112 of 112 for timeEnd (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    	klog.Infof("Starting OpenAPI controller")
    
    	c.staticSpec = staticSpec
    	c.openAPIService = openAPIService
    
    	if !cache.WaitForCacheSync(stopCh, c.crdsSynced) {
    		utilruntime.HandleError(fmt.Errorf("timed out waiting for caches to sync"))
    		return
    	}
    
    	// create initial spec to avoid merging once per CRD on startup
    	crds, err := c.crdLister.List(labels.Everything())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/runtime/crash_unix_test.go

    		})
    		runtime.UnlockOSThread()
    		wg.Done()
    	}()
    	waitingM := <-ready
    	runtime.SendSigusr1(waitingM)
    
    	timer := time.AfterFunc(time.Second, func() {
    		// Write 1 to tell WaitForSigusr1 that we timed out.
    		bw := byte(1)
    		if n := runtime.Write(uintptr(w), unsafe.Pointer(&bw), 1); n != 1 {
    			t.Errorf("pipe write failed: %d", n)
    		}
    	})
    	defer timer.Stop()
    
    	wg.Wait()
    	if got == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top