Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for queuesa (0.14 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	// A pod added with a deletion timestamp should decrement deletions, not creations.
    	manager.addPod(logger, &pod)
    
    	queueRS, _ := manager.queue.Get()
    	if queueRS != rsKey {
    		t.Fatalf("Expected to find key %v in queue, found %v", rsKey, queueRS)
    	}
    	manager.queue.Done(rsKey)
    
    	podExp, exists, err := manager.expectations.GetExpectations(rsKey)
    	if !exists || err != nil || !podExp.Fulfilled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    			queue := p.requeuePodViaQueueingHint(logger, pInfo, hint, UnscheduledPodUpdate.Label)
    			if queue != unschedulablePods {
    				logger.V(5).Info("Pod moved to an internal scheduling queue because the Pod is updated", "pod", klog.KObj(newPod), "event", PodUpdate, "queue", queue)
    				p.unschedulablePods.delete(usPodInfo.Pod, gated)
    			}
    			if queue == activeQ {
    				p.cond.Broadcast()
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

        WeakValueReferenceImpl(ReferenceQueue<V> queue, V referent, E entry) {
          super(referent, queue);
          this.entry = entry;
        }
    
        @Override
        public E getEntry() {
          return entry;
        }
    
        @Override
        public WeakValueReference<K, V, E> copyFor(ReferenceQueue<V> queue, E entry) {
          return new WeakValueReferenceImpl<>(queue, get(), entry);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        WeakValueReferenceImpl(ReferenceQueue<V> queue, V referent, E entry) {
          super(referent, queue);
          this.entry = entry;
        }
    
        @Override
        public E getEntry() {
          return entry;
        }
    
        @Override
        public WeakValueReference<K, V, E> copyFor(ReferenceQueue<V> queue, E entry) {
          return new WeakValueReferenceImpl<>(queue, get(), entry);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    	for len(queue) > 0 {
    		roots = tidy.rootModules
    		mg, err := tidy.Graph(ctx)
    		if err != nil {
    			return nil, err
    		}
    
    		prevQueue := queue
    		queue = nil
    		for _, pkg := range prevQueue {
    			m := pkg.mod
    			if m.Path == "" {
    				continue
    			}
    			for _, dep := range pkg.imports {
    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    	name string
    
    	// parentID is the parent ID of the active task.
    	parentID TaskID
    }
    
    // queue implements a growable ring buffer with a queue API.
    type queue[T any] struct {
    	start, end int
    	buf        []T
    }
    
    // push adds a new event to the back of the queue.
    func (q *queue[T]) push(value T) {
    	if q.end-q.start == len(q.buf) {
    		q.grow()
    	}
    	q.buf[q.end%len(q.buf)] = value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int64(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    		// meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    		// If k-1 is S-type, queue -k for processing later in this loop.
    		// If k-1 is L-type (text[k-1] > text[k]), queue k to save for the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			expectedHint:                    framework.Queue,
    			expectedErr:                     true,
    		},
    		"backoff-wrong-new-object": {
    			pod:                             &v1.Pod{},
    			newObj:                          "not-a-pod",
    			enableInPlacePodVerticalScaling: true,
    			expectedHint:                    framework.Queue,
    			expectedErr:                     true,
    		},
    		"queue-on-other-pod-deleted": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    // executed update if no update is already queued, and then notifies the pod
    // worker goroutine of the update. This method must be called while holding
    // the pod lock.
    func (p *podWorkers) requeueLastPodUpdate(podUID types.UID, status *podSyncStatus) {
    	// if there is already an update queued, we can use that instead, or if
    	// we have no previously executed update, we cannot replay it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    		return
    	}
    
    	// Requests are always added to queue with resyncPeriod delay.  If there's already
    	// request for the HPA in the queue then a new request is always dropped. Requests spend resync
    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top