Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for timeEnd (0.16 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		if attachedVolumesNum == 1+extraPodsNum && detachedVolumesNum == nodesNum {
    			break
    		}
    		if i == 10 { // 10 seconds time out
    			t.Fatalf("Waiting for the volumes to attach/detach timed out: attached %d (expected %d); detached %d (%d)",
    				attachedVolumesNum, 1+extraPodsNum, detachedVolumesNum, nodesNum)
    		}
    	}
    
    	if testPlugin.GetErrorEncountered() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller.go

    			!cache.WaitForNamedCacheSync(
    				"resource quota",
    				waitForStopOrTimeout(ctx.Done(), period),
    				func() bool { return rq.quotaMonitor.IsSynced(ctx) },
    			) {
    			utilruntime.HandleError(fmt.Errorf("timed out waiting for quota monitor sync"))
    			return
    		}
    
    		logger.V(2).Info("synced quota controller")
    	}, period)
    }
    
    // printDiff returns a human-readable summary of what resources were added and removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{57, "ENOTCONN", "transport endpoint is not connected"},
    	{58, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{59, "ETOOMANYREFS", "too many references: cannot splice"},
    	{60, "ETIMEDOUT", "connection timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    	{62, "ELOOP", "too many levels of symbolic links"},
    	{63, "ENAMETOOLONG", "file name too long"},
    	{64, "EHOSTDOWN", "host is down"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager.go

    	defer timeout.Stop()
    	ticker := m.clock.NewTicker(podCleanupPollFreq)
    	defer ticker.Stop()
    	for {
    		select {
    		case <-timeout.C():
    			klog.InfoS("Eviction manager: timed out waiting for pods to be cleaned up", "pods", klog.KObjSlice(pods))
    			return
    		case <-ticker.C():
    			for i, pod := range pods {
    				if !podCleanedUpFunc(pod) {
    					break
    				}
    				if i == len(pods)-1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    					// the right watch events were received.
    					if added.Equal(tc.expectedByName) && deleted.Equal(tc.expectObserveRemoval) {
    						return
    					} else {
    						t.Fatalf("Timed out waiting for watch events, expected added: %v, removed: %v, but got added: %v, removed: %v", tc.expectedByName, tc.expectObserveRemoval, added, deleted)
    					}
    				case event := <-w.ResultChan():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. src/time/example_test.go

    }
    
    var c chan int
    
    func handle(int) {}
    
    func ExampleAfter() {
    	select {
    	case m := <-c:
    		handle(m)
    	case <-time.After(10 * time.Second):
    		fmt.Println("timed out")
    	}
    }
    
    func ExampleSleep() {
    	time.Sleep(100 * time.Millisecond)
    }
    
    func statusUpdate() string { return "" }
    
    func ExampleTick() {
    	c := time.Tick(5 * time.Second)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. src/runtime/netpoll.go

    		netpollAdjustWaiters(1)
    	}
    	return r
    }
    
    func netpollgoready(gp *g, traceskip int) {
    	goready(gp, traceskip+1)
    }
    
    // returns true if IO is ready, or false if timed out or closed
    // waitio - wait only for completed IO, ignore errors
    // Concurrent calls to netpollblock in the same mode are forbidden, as pollDesc
    // can hold only a single waiting goroutine for each mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top