Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 297 for stopped_ (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestWorkerTest.groovy

            when:
            async {
                worker.execute(workerContext)
                instant.completed
            }
    
            then:
            instant.completed > instant.stopped
            System.properties['org.gradle.test.worker'] == '<worker-id>'
    
            and:
            1 * factory.create(_, _, _) >> processor
            1 * connection.addOutgoing(TestResultProcessor) >> resultProcessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonLogFileStateProbe.groovy

    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Stopped
    
    class DaemonLogFileStateProbe implements DaemonStateProbe {
        private final DaemonContext context
        private final DaemonLogFile log
        private final String startBuildMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

            when:
            communicator.pingOwner(6666, 166, "lock")
    
            then:
            noExceptionThrown()
        }
    
        def "can be stopped"() {
            expect:
            communicator.stop()
        }
    
        def "can be stopped during receive"() {
            start {
                try {
                    communicator.receive()
                } catch (GracefullyStoppedException e) {}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. pkg/controller/resourcequota/resource_quota_monitor.go

    	// Stop any running monitors.
    	qm.monitorLock.Lock()
    	defer qm.monitorLock.Unlock()
    	monitors := qm.monitors
    	stopped := 0
    	for _, monitor := range monitors {
    		if monitor.stopCh != nil {
    			stopped++
    			close(monitor.stopCh)
    		}
    	}
    	logger.Info("QuotaMonitor stopped monitors", "stopped", stopped, "total", len(monitors))
    }
    
    func (qm *QuotaMonitor) runProcessResourceChanges(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_wasip1.go

    		return "terminated"
    	case SIGCHLD:
    		return "child exited"
    	case SIGCONT:
    		return "continued"
    	case SIGSTOP:
    		return "stopped (signal)"
    	case SIGTSTP:
    		return "stopped"
    	case SIGTTIN:
    		return "stopped (tty input)"
    	case SIGTTOU:
    		return "stopped (tty output)"
    	case SIGURG:
    		return "urgent I/O condition"
    	case SIGXCPU:
    		return "CPU time limit exceeded"
    	case SIGXFSZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/time/tick_test.go

    // to have the same signatures as Timer.
    type tickerTimer struct {
    	*Ticker
    	stopped bool
    }
    
    func (t *tickerTimer) Stop() bool {
    	pending := !t.stopped
    	t.stopped = true
    	t.Ticker.Stop()
    	return pending
    }
    
    func (t *tickerTimer) Reset(d Duration) bool {
    	pending := !t.stopped
    	t.stopped = false
    	t.Ticker.Reset(d)
    	return pending
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

                allClients.removeAll(clientsToStop);
                if (failureCount > 0) {
                    LOGGER.info("Stopped {} worker daemon(s).  {} worker daemons had failures while stopping.", clientCount, failureCount);
                } else {
                    LOGGER.info("Stopped {} worker daemon(s).", clientCount);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. samples/extauthz/cmd/extauthz/main.go

    	wg.Add(2)
    	go s.startHTTP(httpAddr, &wg)
    	go s.startGRPC(grpcAddr, &wg)
    	wg.Wait()
    }
    
    func (s *ExtAuthzServer) stop() {
    	s.grpcServer.Stop()
    	log.Printf("GRPC server stopped")
    	log.Printf("HTTP server stopped: %v", s.httpServer.Close())
    }
    
    func NewExtAuthzServer() *ExtAuthzServer {
    	return &ExtAuthzServer{
    		grpcV2:   &extAuthzServerV2{},
    		grpcV3:   &extAuthzServerV3{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top