Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 540 for stopped_ (0.13 sec)

  1. src/syscall/zerrors_linux_arm.go

    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    	24: "CPU time limit exceeded",
    	25: "file size limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartupMessage.java

                }
                if (numIncompatible > 0) {
                    reasons.add(numIncompatible + " incompatible");
                }
                if (numStopped > 0) {
                    reasons.add(numStopped + " stopped");
                }
    
                return STARTING_DAEMON_MESSAGE + ", "
                    + Joiner.on(" and ").join(reasons) + " Daemon" + (totalUnavailableDaemons > 1 ? "s" : "")
                    + NOT_REUSED_MESSAGE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/AsyncConsumerActionExecutor.java

         * complete. Note that the action may have completed by the time this method returns.
         *
         * @throws IllegalStateException When this connection has been stopped or is stopping.
         */
        <T> void run(ConsumerAction<? extends T> action, ResultHandlerVersion1<? super T> handler);
    
        /**
         * Stops this connection, blocking until all operations on the connection have completed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready_test.go

    	if ready.check() {
    		t.Errorf("unexpected ready state %v", ready.check())
    	}
    	// can not set to true if is stopped
    	ready.set(true)
    	if ready.check() {
    		t.Errorf("unexpected ready state %v", ready.check())
    	}
    	err := ready.wait(context.Background())
    	if err == nil {
    		t.Errorf("expected error waiting on a stopped state")
    	}
    }
    
    func Test_newReadyCancelPending(t *testing.T) {
    	errCh := make(chan error, 10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{20, "SIGWINCH", "window Size Change"},
    	{21, "SIGURG", "urgent Socket Condition"},
    	{22, "SIGIO", "pollable Event"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped (user)"},
    	{25, "SIGCONT", "continued"},
    	{26, "SIGTTIN", "stopped (tty input)"},
    	{27, "SIGTTOU", "stopped (tty output)"},
    	{28, "SIGVTALRM", "virtual Timer Expired"},
    	{29, "SIGPROF", "profiling Timer Expired"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

            given:
            actor.stop()
    
            when:
            proxy.doStuff('param')
    
            then:
            IllegalStateException e = thrown()
            e.message == 'This actor has been stopped.'
        }
    
        def cannotDispatchToNonBlockingActorAfterItHasBeenStopped() {
            def actor = factory.createActor(target)
            def proxy = actor.getProxy(TargetObject.class)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker_test.go

    		i += resp.Count
    	}
    }
    
    // newWorkerForTest creates and starts a worker process for testing or
    // benchmarking. The worker process calls RunFuzzWorker, which responds to
    // RPC messages until it's stopped. The process is stopped and cleaned up
    // automatically when the test is done.
    func newWorkerForTest(tb testing.TB) *worker {
    	tb.Helper()
    	c, err := newCoordinator(CoordinateFuzzingOpts{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/EndPointQueue.java

                    }
                }
            }
            drainTo.addAll(queue);
            queue.clear();
        }
    
        public void stop() {
            owner.stopped(this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

            return new ThreadHandleImpl(thread);
        }
    
        private void testThreadStarted(Thread thread) {
            lock.lock();
            try {
                if (stopped) {
                    throw new IllegalStateException("Cannot start new threads, as this test case has been stopped.");
                }
                LOGGER.debug("Started {}", thread);
                active.add(thread);
                condition.signalAll();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	// used to lock the observedRecord
    	observedRecordLock sync.Mutex
    
    	metrics leaderMetricsAdapter
    }
    
    // Run starts the leader election loop. Run will not return
    // before leader election loop is stopped by ctx or it has
    // stopped holding the leader lease
    func (le *LeaderElector) Run(ctx context.Context) {
    	defer runtime.HandleCrash()
    	defer func() {
    		le.config.Callbacks.OnStoppedLeading()
    	}()
    
    	if !le.acquire(ctx) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top