Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for timeEnd (0.11 sec)

  1. pkg/scheduler/schedule_one.go

    		// We need to call DonePod here because we don't call AddUnschedulableIfNotPresent in this case.
    	} else {
    		// In the case of extender, the pod may have been bound successfully, but timed out returning its response to the scheduler.
    		// It could result in the live version to carry .spec.nodeName, and that's inconsistent with the internal-queued version.
    		if len(cachedPod.Spec.NodeName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    		panic("net/http: internal error: connCount underflow")
    	}
    
    	// Can we hand this count to a goroutine still waiting to dial?
    	// (Some goroutines on the wait list may have timed out or
    	// gotten a connection another way. If they're all gone,
    	// we don't want to kick off any spurious dial operations.)
    	if q := t.connsPerHostWait[key]; q.len() > 0 {
    		done := false
    		for q.len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	return &timeoutHandler{
    		handler: h,
    		body:    msg,
    		dt:      dt,
    	}
    }
    
    // ErrHandlerTimeout is returned on [ResponseWriter] Write calls
    // in handlers which have timed out.
    var ErrHandlerTimeout = errors.New("http: Handler timeout")
    
    type timeoutHandler struct {
    	handler Handler
    	body    string
    	dt      time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Two changes to the `/debug/api_priority_and_fairness/dump_priority_levels` endpoint of API Priority and Fairness: added total number of dispatched, timed-out, rejected and cancelled requests; output now sorted by `PriorityLevelName`. ([#112393](https://github.com/kubernetes/kubernetes/pull/112393), [@borgerli](https://github.com/borgerli))
    - Unlocked the `CSIMigrationvSphere` feature gate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. RELEASE.md

    *  Added `keras.utils.TimedThread` utility to run a timed thread every x seconds. It can be used to run a threaded function alongside model training or any other snippet of code.
    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