Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 805 for Stopped (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	"context"
    	"fmt"
    	"sync"
    )
    
    type status int
    
    const (
    	Pending status = iota
    	Ready
    	Stopped
    )
    
    // ready is a three state condition variable that blocks until is Ready if is not Stopped.
    // Its initial state is Pending and its state machine diagram is as follow.
    //
    // Pending <------> Ready -----> Stopped
    //
    //	|                           ^
    //	└---------------------------┘
    type ready struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	f.Lock()
    	defer f.Unlock()
    	if !f.stopped {
    		klog.V(4).Infof("Stopping fake watcher.")
    		close(f.result)
    		f.stopped = true
    	}
    }
    
    func (f *FakeWatcher) IsStopped() bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.stopped
    }
    
    // Reset prepares the watcher to be reused.
    func (f *FakeWatcher) Reset() {
    	f.Lock()
    	defer f.Unlock()
    	f.stopped = false
    	f.result = make(chan Event)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apimachinery/pkg/watch/mux.go

    	m.incomingBlock.Lock()
    	defer m.incomingBlock.Unlock()
    
    	// Ensure that if the broadcaster is stopped we do not send events to it.
    	select {
    	case <-m.stopped:
    		return false, fmt.Errorf("broadcaster already stopped")
    	default:
    	}
    
    	select {
    	case m.incoming <- Event{action, obj}:
    		return true, nil
    	default:
    		return false, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:36 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

                executor.execute(action1)
                executor.execute(action2)
                executor.stop()
                instant.stopped
            }
    
            then:
            instant.stopped > instant.completed1
            instant.stopped > instant.completed2
        }
    
        def factoryStopBlocksUntilAllJobsAreComplete() {
            given:
            def action1 = {
                thread.block()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                                break;
                            case Stopped:
                                LOGGER.debug("daemon has stopped.");
                                return DaemonStopState.Clean;
                            case ForceStopped:
                                LOGGER.debug("daemon has been force stopped.");
                                return DaemonStopState.Forced;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReportStatusIntegrationSpec.groovy

            out =~ /\n\s*\d+\s+IDLE\s+([\w\.\+\-]+)/
            out =~ /\n\s*\d+\s+BUSY\s+([\w\.\+\-]+)/
            out =~ /\n\s*12346\s+STOPPED\s+\(GRACEFUL_EXPIRE_REASON\)/
    
            cleanup:
            block?.releaseAll()
            build?.waitForFinish()
        }
    
        def "reports stopped status of recently stopped daemons"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            expect:
            notStopped
    
            when: "stopped first time"
            coordinator.stop()
    
            then: "stops"
            stopped
    
            when: "requested again"
            coordinator.stop()
    
            then:
            stopped
            0 * _._
        }
    
        def "await idle timeout does nothing when already stopped"() {
            given:
            coordinator.stop()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/ServiceLifecycle.java

                    case STOPPING:
                        throw new IllegalStateException(String.format("Cannot use %s as it is currently stopping.", displayName));
                    case STOPPED:
                        throw new IllegalStateException(String.format("Cannot use %s as it has been stopped.", displayName));
                }
                Integer depth = usages.get(Thread.currentThread());
                if (depth == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

                if (interrupted) {
                    Thread.currentThread().interrupt();
                }
                if (state == State.Stopped) {
                    throw new IllegalStateException("Cannot dispatch message, as this message dispatch has been stopped. Message: " + message);
                }
                queue.add(message);
                condition.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/internal/DefaultActorFactory.java

                synchronized (lock) {
                    stopped = true;
                }
                stopped(this);
            }
    
            @Override
            public void dispatch(MethodInvocation message) {
                synchronized (lock) {
                    if (stopped) {
                        throw new IllegalStateException("This actor has been stopped.");
                    }
                    dispatch.dispatch(message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top