Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for stopCh (0.24 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestWorkerTest.groovy

                    worker.processTestClass(test)
                    thread.block()
                    instant.stopped
                    worker.stop()
                }
            }
            1 * processor.startProcessing(_)
            1 * processor.processTestClass(test)
            1 * processor.stop()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClient.java

            return forkOptions.isCompatibleWith(required);
        }
    
        JvmMemoryStatus getJvmMemoryStatus() {
            return workerProcess.getJvmMemoryStatus();
        }
    
        @Override
        public void stop() {
            workerClient.stop();
        }
    
        public void kill() {
            workerClient.stopNow();
        }
    
        DaemonForkOptions getForkOptions() {
            return forkOptions;
        }
    
        public int getUses() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b21 := g2.Batch(trace.ThreadID(1), 3)
    	b21.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b21.Event("GoStart", trace.GoID(1), testgen.Seq(2))
    
    	// The goroutine starts running, then stops, then starts again.
    	b20 := g2.Batch(trace.ThreadID(0), 5)
    	b20.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b20.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunnable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

            when:
            run "th"
    
            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":a:a:thing", ":b:b:thing")
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "stops traversing sub-projects when task implies sub-projects"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/stacks.go

    	"log"
    	"net"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    	"time"
    )
    
    func main() {
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	defer trace.Stop() // in case of early return
    
    	// Now we will do a bunch of things for which we verify stacks later.
    	// It is impossible to ensure that a goroutine has actually blocked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/InstrumentedExecutionAccessListenerRegistry.kt

        instrumentedExecutionAccessListener: InstrumentedExecutionAccessListener
    ) : Stoppable {
    
        init {
            InstrumentedExecutionAccess.setListener(instrumentedExecutionAccessListener)
        }
    
        override fun stop() {
            InstrumentedExecutionAccess.discardListener()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            loader.create(distribution1, loggerFactory, progressListener, params, cancellationToken)
    
            when:
            loader.close()
    
            then:
            1 * connection1.stop()
            1 * connection2.stop()
            0 * _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            // so we should the client does not attempt to connect to it again
            !output.contains(DaemonMessages.REMOVING_DAEMON_ADDRESS_ON_FAILURE)
        }
    
        @Issue("GRADLE-2444")
        def "stop behaves if the registry contains connectable port without daemon on the other end"() {
            when:
            buildSucceeds()
    
            then:
            def daemon = daemons.daemon
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/waiting_pods_map.go

    // to unblock the pod.
    func (w *waitingPod) Allow(pluginName string) {
    	w.mu.Lock()
    	defer w.mu.Unlock()
    	if timer, exist := w.pendingPlugins[pluginName]; exist {
    		timer.Stop()
    		delete(w.pendingPlugins, pluginName)
    	}
    
    	// Only signal success status after all plugins have allowed
    	if len(w.pendingPlugins) != 0 {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

        static URI uri
    
        def setupSpec() {
            jdkRepository = new JdkRepository(JAVA_VERSION)
            uri = jdkRepository.start()
        }
    
        def cleanupSpec() {
            jdkRepository.stop()
        }
    
        def setup() {
            jdkRepository.reset()
    
            executer.requireOwnGradleUserHomeDir()
                .withToolchainDownloadEnabled()
        }
    
        def cleanup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top