Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for STARTED (0.09 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/kubelet/pod_workers.go

    // allowStaticPodStart tries to start the static pod and returns true if
    // 1. there are no other started static pods with the same fullname
    // 2. the uid matches that of the first valid static pod waiting to start
    func (p *podWorkers) allowStaticPodStart(fullname string, uid types.UID) bool {
    	startedUID, started := p.startedStaticPodsByFullname[fullname]
    	if started {
    		return startedUID == uid
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            _ * b.localStateFile >> sharedFile
    
            expect:
            tasksAreNotExecutedInParallel(a, b)
        }
    
        def "a task that writes into a directory that is an output of a running task is not started"() {
            given:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> file("outputDir")
            Task b = task("b", type: AsyncWithOutputDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top