Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for startMem (0.17 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    //
    // The actions include:
    // - Start the first init container that has not been started.
    // - Restart all restartable init containers that have started but are not running.
    // - Kill the restartable init containers that are not alive or started.
    //
    // Note that this is a function for the SidecarContainers feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/trace/order.go

    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    	// Since a P is bound to an M, and we're stopping on the same M we started, it must
    	// always be possible to advance the current M's P from a ProcStop. This is also why
    	// ProcStop doesn't need a sequence number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. 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)
  5. 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. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/regalloc.go

    			// on allocations.
    			regList := make([]startReg, 0, 32)
    			for r := register(0); r < s.numRegs; r++ {
    				v := s.regs[r].v
    				if v == nil {
    					continue
    				}
    				if phiUsed>>r&1 != 0 {
    					// Skip registers that phis used, we'll handle those
    					// specially during merge edge processing.
    					continue
    				}
    				regList = append(regList, startReg{r, v, s.regs[r].c, s.values[v.ID].uses.pos})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top