Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for finishedAt (0.16 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
            reason: reasonValue
            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "lastState": {
              "waiting": {
                "reason": "reasonValue",
                "message": "messageValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.json

              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "lastState": {
              "waiting": {
                "reason": "reasonValue",
                "message": "messageValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.yaml

        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
            reason: reasonValue
            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/controller/job/backoff_utils.go

    			continue
    		}
    		if containerState.State.Terminated == nil ||
    			containerState.State.Terminated.FinishedAt.Time.IsZero() {
    			return nil
    		}
    		if finishTime == nil || finishTime.Before(containerState.State.Terminated.FinishedAt.Time) {
    			finishTime = &containerState.State.Terminated.FinishedAt.Time
    		}
    	}
    	return finishTime
    }
    
    func getFinishTimeFromPodReadyFalseCondition(p *v1.Pod) *time.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Finished.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Sent from the daemon client to the daemon to indicate it has finished with the connection. This is the last
     * message sent from the client to the daemon.
     */
    public class Finished extends Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 871 bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputReader.java

        private UserInput pending;
        private boolean finished;
    
        @Override
        public void startInput() {
            synchronized (lock) {
                pending = null;
                finished = false;
            }
        }
    
        @Override
        public void putInput(UserInput input) {
            synchronized (lock) {
                if (input == END_OF_INPUT) {
                    finished = true;
                    lock.notifyAll();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. operator/pkg/util/progress/progress.go

    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    		cmp.mu.Unlock()
    		successIcon := "✅"
    		if icon, found := name.IstioComponentSuccessIcons[cmpName]; found {
    			successIcon = icon
    		}
    		if finished || cmpErr != "" {
    			if finished {
    				p.SetMessage(fmt.Sprintf(`%s %s installed`, successIcon, cliName), true)
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    // error until the poststarthook is finished.
    type postStartHookHealthz struct {
    	name string
    
    	// done will be closed when the postStartHook is finished
    	done chan struct{}
    }
    
    var _ healthz.HealthChecker = postStartHookHealthz{}
    
    func (h postStartHookHealthz) Name() string {
    	return h.name
    }
    
    var errHookNotFinished = errors.New("not finished")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

      /** Used by [AsyncCall.run] to signal completion. */
      internal fun finished(call: AsyncCall) {
        call.callsPerHost.decrementAndGet()
        finished(runningAsyncCalls, call)
      }
    
      /** Used by [Call.execute] to signal completion. */
      internal fun finished(call: RealCall) {
        finished(runningSyncCalls, call)
      }
    
      private fun <T> finished(
        calls: Deque<T>,
        call: T,
      ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top