Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,131 for STARTED (0.1 sec)

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

        name: nameValue
        ready: true
        resources:
          claims:
          - name: nameValue
          limits:
            limitsKey: "0"
          requests:
            requestsKey: "0"
        restartCount: 5
        started: true
        state:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogEvent.java

     */
    
    package org.gradle.api.tasks.testing.logging;
    
    /**
     * Test events that can be logged.
     */
    public enum TestLogEvent {
        /**
         * A test has started. This event gets fired both for atomic and composite tests.
         */
        STARTED,
    
        /**
         * A test has completed successfully. This event gets fired both for atomic and composite tests.
         */
        PASSED,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        GradleHandle abort();
    
        /**
         * Cancel a build that was started as a cancellable build by closing stdin.  Does not block until the build has finished.
         */
        GradleHandle cancel();
    
        /**
         * Cancel a build that was started as a cancellable build by sending EOT (ctrl-d).  Does not block until the build has finished.
         */
        GradleHandle cancelWithEOT();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterTest.groovy

            _ * buildStartEvent.getEventTime() >> 999
            _ * buildStartEvent.getDisplayName() >> 'build started'
            _ * buildStartEvent.getDescriptor() >> buildDescriptor
    
            def taskStartEvent = Mock(InternalOperationStartedProgressEvent)
            _ * taskStartEvent.getEventTime() >> 1001
            _ * taskStartEvent.getDisplayName() >> 'task started'
            _ * taskStartEvent.getDescriptor() >> taskDescriptor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/worker.go

    		return true
    	}
    
    	if c.Started != nil && *c.Started {
    		// Stop probing for startup once container has started.
    		// we keep it running to make sure it will work for restarted container.
    		if w.probeType == startup {
    			return true
    		}
    	} else {
    		// Disable other probes until container has started.
    		if w.probeType != startup {
    			return true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. cmd/metacache_gen.go

    		case "end":
    			z.ended, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "ended")
    				return
    			}
    		case "st":
    			z.started, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "started")
    				return
    			}
    		case "lh":
    			z.lastHandout, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "lastHandout")
    				return
    			}
    		case "u":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/invocation/BuildInvocationDetails.java

     *     }
      * }
     * </pre>
     * @since 5.0
     */
    public interface BuildInvocationDetails {
    
        /**
         * The wall-clock time in millis that the build was started.
         *
         * The build is considered to have started as soon as the user, or some tool, initiated the build.
         * During continuous build, subsequent builds are timed from when changes are noticed.
         */
        long getBuildStartedTime();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 14 15:39:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestResultProcessor.java

     */
    @UsedByScanPlugin("test-distribution, test-retry")
    public interface TestResultProcessor {
        /**
         * Notifies this processor that a test has started execution.
         */
        @UsedByScanPlugin("test-distribution")
        void started(TestDescriptorInternal test, TestStartEvent event);
    
        /**
         * Notifies this processor that a test has completed execution.
         */
        @UsedByScanPlugin("test-distribution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/main/assemblies/files/service.bat

    echo Usage: service.bat install^|remove^|start^|stop^|manager [SERVICE_ID]
    goto:eof
    
    :doStart
    "%EXECUTABLE%" //ES//%SERVICE_ID% %LOG_OPTS%
    if not errorlevel 1 goto started
    echo Failed starting '%SERVICE_ID%' service
    goto:eof
    :started
    echo The service '%SERVICE_ID%' has been started
    goto:eof
    
    :doStop
    "%EXECUTABLE%" //SS//%SERVICE_ID% %LOG_OPTS%
    if not errorlevel 1 goto stopped
    echo Failed stopping '%SERVICE_ID%' service
    goto:eof
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/FailFastTestListenerInternal.java

            this.testExecuter = testExecuter;
            this.delegate = delegate;
        }
    
        @Override
        public void started(TestDescriptorInternal testDescriptor, TestStartEvent startEvent) {
            delegate.started(testDescriptor, startEvent);
        }
    
        @Override
        public void completed(TestDescriptorInternal testDescriptor, TestResult testResult, TestCompleteEvent completeEvent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top