Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for startCA (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			message = fmt.Sprintf("Container %s failed liveness probe", container.Name)
    			reason = reasonLivenessProbe
    		} else if startup, found := m.startupManager.Get(containerStatus.ID); found && startup == proberesults.Failure {
    			// If the container failed the startup probe, we should kill it.
    			message = fmt.Sprintf("Container %s failed startup probe", container.Name)
    			reason = reasonStartupProbe
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager_test.go

    	// Verify expected startup of containers & pod.
    	verifyStartup := func(step string, status *v1.PodStatus, c1Started, c2Started, podStarted bool) {
    		for _, c := range status.ContainerStatuses {
    			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)
    				}
    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/runtime/mgc.go

    	// Finish sweep before we start concurrent scan.
    	systemstack(func() {
    		finishsweep_m()
    	})
    
    	// clearpools before we start the GC. If we wait the memory will not be
    	// reclaimed until the next GC cycle.
    	clearpools()
    
    	work.cycles.Add(1)
    
    	// Assists and workers can start the moment we start
    	// the world.
    	gcController.startCycle(now, int(gomaxprocs), trigger)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		actions        podActions
    	}{
    		"initialization completed; start all containers": {
    			actions: podActions{
    				SandboxID:         baseStatus.SandboxStatuses[0].Id,
    				ContainersToStart: []int{0, 1, 2},
    				ContainersToKill:  getKillMapWithInitContainers(basePod, baseStatus, []int{}),
    			},
    		},
    		"no init containers have been started; start the first one": {
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. 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)
  6. 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. 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)
  8. 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)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    } else...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	idleMarkTime atomic.Int64
    
    	// 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)
Back to top