Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for stopped_ (0.71 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                        state = State.STOPPED;
                        // Clean the interrupted status
                        // because some test class processors do work here, e.g. JUnitPlatform
                        Thread.interrupted();
                    }
                }
            });
        }
    
        private synchronized void submitToRun(Runnable command) {
            if (state != State.STOPPED) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/syscall/syscall_bsd.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() Signal {
    	sig := Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() syscall.Signal {
    	sig := syscall.Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && syscall.Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/util/manager/watch_based_manager_test.go

    			}
    			reflectorRunning := func() bool {
    				store.lock.Lock()
    				defer store.lock.Unlock()
    				item := store.items[key]
    
    				item.lock.Lock()
    				defer item.lock.Unlock()
    				return !item.stopped
    			}
    
    			// AddReference should start reflector.
    			store.AddReference("ns", "name", "pod")
    			if err := wait.Poll(10*time.Millisecond, time.Second, itemExists); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() Signal {
    	sig := Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                formatter.node("Workers waiting for work: " + waitingWorkers);
                formatter.node("Stopped workers: " + stoppedWorkers);
                formatter.endChildren();
                return new HealthState(formatter);
            }
    
            enum ExecutionState {
                Running, Waiting, Stopped
            }
    
            private static class HealthState {
                final TreeFormatter detailMessage;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top