Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 657 for STARTED (0.19 sec)

  1. 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)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("Plugin 'test-convention-plugin': external process started")
            }
    
            where:
            snippetsFactory             | file
            exec().groovy               | "buildSrc/src/main/groovy/test-convention-plugin.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. cmd/batch-handlers_gen.go

    				return
    			}
    		case "User":
    			z.User, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "User")
    				return
    			}
    		case "Started":
    			z.Started, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "Started")
    				return
    			}
    		case "Replicate":
    			if dc.IsNil() {
    				err = dc.ReadNil()
    				if err != nil {
    					err = msgp.WrapError(err, "Replicate")
    					return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
              "allocatedResourcesKey": "0"
            },
            "resources": {
              "limits": {
                "limitsKey": "0"
              },
              "requests": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessor.java

        }
    
        @Override
        public void started(TestDescriptorInternal test, TestStartEvent event) {
            if (rootId == null) {
                assert test.isComposite();
                rootId = test.getId();
            } else if (event.getParentId() == null) {
                event = event.withParentId(rootId);
            }
            processor.started(test, event);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

        private boolean configured
    
        Server getServer() {
            server
        }
    
        String getAddress() {
            if (!server.started) {
                server.start()
            }
            getUri().toString()
        }
    
        URI getUri() {
            assert server.started
            if (sslConnector) {
                return URI.create("https://localhost:${sslConnector.localPort}")
            } else if (useHostnameForUrl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. docs/ja/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonContext.java

        /**
         * The daemon's idle timeout in milliseconds.
         */
        Integer getIdleTimeout();
    
        /**
         * Returns the JVM options that the daemon was started with.
         *
         * @return the JVM options that the daemon was started with
         */
        Collection<String> getDaemonOpts();
    
        /**
         * Returns whether the instrumentation agent should be applied to the daemon
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

     */
    
    package org.gradle.internal.session;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A listener that is notified when a session is started and completed. No more than one session may be active at any time.
     *
     * One or more builds may be run during a session. For example, when running in continuous mode, multiple builds are run during a single session.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestListener.java

     * from JUnit and TestNG tests.
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestListener {
        /**
         * Called before a test suite is started.
         * @param suite The suite whose tests are about to be executed.
         */
        void beforeSuite(TestDescriptor suite);
    
        /**
         * Called after a test suite is finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top