Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 540 for stopped_ (0.12 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

        }
    
        @Override
        public void submit(ConditionalExecution<T> execution) {
            if (queueState == QueueState.Stopped) {
                throw new IllegalStateException("DefaultConditionalExecutionQueue cannot be reused once it has been stopped.");
            }
    
            lock.lock();
            try {
                // expand the thread pool until we hit max workers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            return buildProcessState.getServices();
        }
    
        public void stopped(DaemonStopState stopState) {
            this.stopState.set(stopState);
        }
    
        @Override
        public void close() {
            if (stopState.get() == DaemonStopState.Forced) {
                // The daemon could not be stopped cleanly, so the services could still be doing work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

            and:
            succeeds "runInWorker2"
    
            then:
            assertDifferentDaemonsWereUsed("runInWorker1", "runInWorker2")
        }
    
        def "worker daemons can be restarted when daemon is stopped"() {
            fixture.withWorkActionClassInBuildScript()
            buildFile << """
                task runInWorker1(type: WorkerTask) {
                    isolationMode = 'processIsolation'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    		klog.Warningln("[reset] Please ensure kubelet is stopped manually")
    	} else {
    		if !r.DryRun() {
    			fmt.Println("[reset] Stopping the kubelet service")
    			if err := initSystem.ServiceStop("kubelet"); err != nil {
    				klog.Warningf("[reset] The kubelet service could not be stopped by kubeadm: [%v]\n", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonRegistryStateProbe.groovy

    import org.gradle.testfixtures.internal.NativeServicesTestFixture
    
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Stopped
    
    class DaemonRegistryStateProbe implements DaemonStateProbe {
        private final DaemonRegistry registry
        private final DaemonContext context
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. releasenotes/notes/vm-cleanup-iptables.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 29556
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 09 16:00:57 UTC 2021
    - 193 bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/types.go

    }
    
    // TODO: evaluate whether we need this error definition.
    const (
    	errEndpointStopped = "endpoint %v has been stopped"
    )
    
    // endpointStopGracePeriod indicates the grace period after an endpoint is stopped
    // because its device plugin fails. DeviceManager keeps the stopped endpoint in its
    // cache during this grace period to cover the time gap for the capacity change to
    // take effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/time/tick.go

    //
    // Before Go 1.23, the garbage collector did not recover
    // tickers that had not yet expired or been stopped, so code often
    // immediately deferred t.Stop after calling NewTicker, to make
    // the ticker recoverable when it was no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // tickers, even if they haven't been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_too_many_redirects.txt

    env GO111MODULE=on
    env GOPROXYBASE=$GOPROXY
    env GOPROXY=$GOPROXYBASE/redirect/11
    env GOSUMDB=off
    
    ! go mod download rsc.io/quote@v1.2.0
    stderr 'stopped after 10 redirects'
    
    env GOPROXY=$GOPROXYBASE/redirect/9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 245 bytes
    - Viewed (0)
  10. pkg/queue/delay.go

    				return
    			}
    		}
    	}
    }
    
    // work takes a channel that signals to stop, and returns a channel that signals the worker has fully stopped
    func (d *delayQueue) work(stop <-chan struct{}) (stopped chan struct{}) {
    	stopped = make(chan struct{})
    	go func() {
    		defer close(stopped)
    		for {
    			select {
    			case t := <-d.execute:
    				if err := t.do(); err != nil {
    					if t.retries < maxTaskRetry {
    						t.retries++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top