Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 200 for STARTED (0.11 sec)

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

                if (file.endsWith(".gradle.kts")) {
                    withProblem("Initialization script '${relativePath(file)}': external process started")
                } else {
                    withProblem("Initialization script '${relativePath(file)}': line 5: external process started")
                }
            }
    
            where:
            snippetsFactory             | file
            exec().groovy               | "exec.init.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/MultiRequestWorkerProcessBuilder.java

     *
     * <p>The worker process must be explicitly started and stopped using the methods on {@link WorkerControl}.</p>
     */
    public interface MultiRequestWorkerProcessBuilder<IN, OUT> extends WorkerProcessSettings {
        /**
         * Creates a worker.
         *
         * <p>The worker process is not started until {@link WorkerControl#start()} is called on the returned object.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/net/http/transport_dial_test.go

    	rt2 := dt.roundTrip()
    	c2 := dt.wantDial()
    	rt1.finish()
    	rt2.wantDone(c1)
    
    	// This section is a bit overfitted to the current Transport implementation:
    	// A third request starts. We have an in-progress dial that was started by rt2,
    	// but this new request (rt3) is going to ignore it and make a dial of its own.
    	// rt3 will use the first of these dials that completes.
    	rt3 := dt.roundTrip()
    	c3 := dt.wantDial()
    	c2.finish(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessorTest.groovy

        }
    
        def firesSuiteStartEventOnStartProcessing() {
            when:
            processor.startProcessing(resultProcessor)
    
            then:
            1 * resultProcessor.started(suiteDescriptor, !null)
            1 * targetProcessor.startProcessing(!null) >> { args ->
                def processor = args[0]
                processor instanceof AttachParentTestResultProcessor && args[0].processor == resultProcessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

                run.args '${veryLongCommandLineArgs.join("','")}'
            """
    
            when:
            fails taskName
    
            then:
            failure.assertThatCause(containsText("could not be started because the command line exceed operating system limits."))
    
            where:
            method                    | taskName
            'JavaExec task'           | 'run'
            'project.javaexec'        | 'runWithJavaExec'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

        /**
         * Called when the build is started.
         *
         * @return whether watching the file system is currently enabled. This requires that the feature
         * is supported on the current operating system, it is enabled for the build, and has been successfully
         * started.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SocksProxyServer.groovy

     * JUnit @Rule with an instance of this class.
     *
     * When used as a rule, the proxy is stopped automatically at the end of the test,
     * but it is _not_ automatically started.
     *
     * To use the proxy with a build, you must call configureProxy(GradleExecuter) before
     * starting the proxy.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/ready/probe.go

    	}
    	return fmt.Errorf("config not fully received from XDS server: %s", s.String())
    }
    
    // isEnvoyReady checks to ensure that Envoy is in the LIVE state and workers have started.
    func (p *Probe) isEnvoyReady() error {
    	if p.NoEnvoy {
    		return nil
    	}
    	if p.Context == nil {
    		return p.checkEnvoyReadiness()
    	}
    	select {
    	case <-p.Context.Done():
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top