Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for STARTED (0.14 sec)

  1. pkg/kubelet/pod_workers_test.go

    		UpdateType: kubetypes.SyncPodUpdate,
    	})
    	drainAllWorkers(podWorkers)
    
    	// 3-static should not be started because 2-static is still running
    	if e, a := map[string]types.UID{"pod1_test1": "2-static"}, podWorkers.startedStaticPodsByFullname; !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected started static pods: %s", cmp.Diff(e, a))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    						Name:            "finished-job-started-hour-ago",
    						OwnerReferences: []metav1.OwnerReference{{Name: "fooer", Controller: pointer.Bool(true)}},
    					},
    					Status: batchv1.JobStatus{StartTime: &metav1.Time{Time: justBeforeThePriorHour()}},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Namespace:       "foo-ns",
    						Name:            "finished-job-started-minute-ago",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. cmd/batch-handlers.go

    		}
    
    		if jobType == string(req.Type()) {
    			listResult.Jobs = append(listResult.Jobs, madmin.BatchJobResult{
    				ID:      req.ID,
    				Type:    req.Type(),
    				Started: req.Started,
    				User:    req.User,
    				Elapsed: time.Since(req.Started),
    			})
    		}
    	}
    
    	batchLogIf(ctx, json.NewEncoder(w).Encode(&listResult))
    }
    
    var errNoSuchJob = errors.New("no such job")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
              "allocatedResourcesKey": "0"
            },
            "resources": {
              "limits": {
                "limitsKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
              "allocatedResourcesKey": "0"
            },
            "resources": {
              "limits": {
                "limitsKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// Should not restart the pod, just return.
    			// we should not create a sandbox, and just kill the pod if it is already done.
    			// if all containers are done and should not be started, there is no need to create a new sandbox.
    			// this stops confusing logs on pods whose containers all have exit codes, but we recreate a sandbox before terminating it.
    			//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top