Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for STARTED (0.1 sec)

  1. pkg/kubelet/status/status_manager_test.go

    			switch c.ContainerID {
    			case cID1.String():
    				if (c.Started != nil && *c.Started) != c1Started {
    					t.Errorf("[%s] Expected startup of c1 to be %v but was %v", step, c1Started, c.Started)
    				}
    			case cID2.String():
    				if (c.Started != nil && *c.Started) != c2Started {
    					t.Errorf("[%s] Expected startup of c2 to be %v but was %v", step, c2Started, c.Started)
    				}
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    }
    
    type gcTriggerKind int
    
    const (
    	// gcTriggerHeap indicates that a cycle should be started when
    	// the heap size reaches the trigger heap size computed by the
    	// controller.
    	gcTriggerHeap gcTriggerKind = iota
    
    	// gcTriggerTime indicates that a cycle should be started when
    	// it's been more than forcegcperiod nanoseconds since the
    	// previous GC cycle.
    	gcTriggerTime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * registered as a listener.</p>
     */
    public class DefaultServiceRegistry implements ServiceRegistry, Closeable, ContainsServices, ServiceRegistrationProvider {
        private enum State {INIT, STARTED, CLOSED}
    
        private final static ServiceRegistry[] NO_PARENTS = new ServiceRegistry[0];
        private final static Service[] NO_DEPENDENTS = new Service[0];
        private final static Object[] NO_PARAMS = new Object[0];
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
                      } catch (InvocationTargetException e) {
                        throw e.getCause();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
                      } catch (InvocationTargetException e) {
                        throw e.getCause();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    				maxbg = runtime.NumCPU()
    				break
    			}
    		}
    	}
    
    	started := 0
    	ended := 0
    	var last *distTest
    	for ended < len(worklist) {
    		for started < len(worklist) && started-ended < maxbg {
    			w := worklist[started]
    			started++
    			w.start <- !t.failed || t.keepGoing
    		}
    		w := worklist[ended]
    		dt := w.dt
    		if t.lastHeading != dt.heading {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// markStartTime is the absolute start time in nanoseconds
    	// that assists and background mark workers started.
    	markStartTime int64
    
    	// dedicatedMarkWorkersNeeded is the number of dedicated mark workers
    	// that need to be started. This is computed at the beginning of each
    	// cycle and decremented as dedicated mark workers get started.
    	dedicatedMarkWorkersNeeded atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/map.go

    		if checkBucket != noCheck && !h.sameSizeGrow() {
    			// Special case: iterator was started during a grow to a larger size
    			// and the grow is not done yet. We're working on a bucket whose
    			// oldbucket has not been evacuated yet. Or at least, it wasn't
    			// evacuated when we started the bucket. So we're iterating
    			// through the oldbucket, skipping any keys that will go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    func (ctrl *PersistentVolumeController) recycleVolumeOperation(ctx context.Context, volume *v1.PersistentVolume) {
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("RecycleVolumeOperation started", "volumeName", volume.Name)
    
    	// This method may have been waiting for a volume lock for some time.
    	// Previous recycleVolumeOperation might just have saved an updated version,
    	// so read current volume state now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	// occurred after the pod scheduling attempt for that pod started.
    	// They get removed when the scheduling attempt is done, at which
    	// point all events that occurred in the meantime are processed.
    	//
    	// After removal of a pod, events at the start of the list are no
    	// longer needed because all of the other in-flight pods started
    	// later. Those events can be removed.
    	inFlightEvents *list.List
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top