Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for dequeue1 (0.3 sec)

  1. pkg/scheduler/schedule_one.go

    		// When Extenders reject some Nodes and the pod ends up being unschedulable,
    		// we put framework.ExtenderName to pInfo.UnschedulablePlugins.
    		// This Pod will be requeued from unschedulable pod pool to activeQ/backoffQ
    		// by any kind of cluster events.
    		// https://github.com/kubernetes/kubernetes/issues/122019
    		if diagnosis.UnschedulablePlugins == nil {
    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. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		watcher.stopLocked()
    	}
    	c.watchersToStop = c.watchersToStop[:0]
    
    	for _, watcher := range c.expiredBookmarkWatchers {
    		if watcher.stopped {
    			continue
    		}
    		// requeue the watcher for the next bookmark if needed.
    		c.bookmarkWatchers.addWatcherThreadUnsafe(watcher)
    	}
    	c.expiredBookmarkWatchers = c.expiredBookmarkWatchers[:0]
    }
    
    func (c *Cacher) terminateAllWatchers() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    	jm.orphanQueue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and marks them done.
    // It enforces that the syncHandler is never invoked concurrently with the same key.
    func (jm *Controller) worker(ctx context.Context) {
    	for jm.processNextWorkItem(ctx) {
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

       ([#122022](https://github.com/kubernetes/kubernetes/pull/122022), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Dequeues a tuple of one or more tensors from the given queue.";
    
      let description = [{
    This operation has k outputs, where k is the number of components
    in the tuples stored in the given queue, and output i is the ith
    component of the dequeued tuple.
    
    N.B. If the queue is empty, this operation will block until an element
    has been dequeued (or 'timeout_ms' elapses, if specified).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Fixed the calculation of the requeue time in the cronjob controller, resulting in proper handling of failed/stuck jobs. ([#121327](https://github.com/kubernetes/kubernetes/pull/121327), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	if t-h+n >= uint32(len(pp.runq)) {
    		throw("runqsteal: runq overflow")
    	}
    	atomic.StoreRel(&pp.runqtail, t+n) // store-release, makes the item available for consumption
    	return gp
    }
    
    // A gQueue is a dequeue of Gs linked through g.schedlink. A G can only
    // be on one gQueue or gList at a time.
    type gQueue struct {
    	head guintptr
    	tail guintptr
    }
    
    // empty reports whether q is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
      Now, the scheduling queue notices extenders' failures and requeue Pods rejected by Extenders appropriately. ([#122045](https://github.com/kubernetes/kubernetes/pull/122045), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    
    ### Other (Cleanup or Flake)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.27.md

      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
      Now, the scheduling queue notices extenders' failures and requeue Pods rejected by Extenders appropriately. ([#122044](https://github.com/kubernetes/kubernetes/pull/122044), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    
    ### Other (Cleanup or Flake)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	// called with wr.StreamID()!=0 unless that stream is currently open. The one
    	// exception is RST_STREAM frames, which may be sent on idle or closed streams.
    	Push(wr http2FrameWriteRequest)
    
    	// Pop dequeues the next frame to write. Returns false if no frames can
    	// be written. Frames with a given wr.StreamID() are Pop'd in the same
    	// order they are Push'd, except RST_STREAM frames. No frames should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top