Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,013 for _Gwaiting (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	wait.PollImmediate(500*time.Millisecond, wait.ForeverTestTimeout, func() (done bool, err error) {
    		if waiting := target.Waiting(); waiting {
    			waitingGot = true
    			return true, nil
    		}
    		return false, nil
    	})
    	// verify that the waitgroup is in 'Waiting' mode
    	if !waitingGot {
    		t.Errorf("expected to be in waiting")
    	}
    
    	// we should not allow any new request to use this waitgroup any longer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. docs/em/docs/deployment/server-workers.md

    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    [19514] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/sync/cond.go

    	runtime_notifyListWait(&c.notify, t)
    	c.L.Lock()
    }
    
    // Signal wakes one goroutine waiting on c, if there is any.
    //
    // It is allowed but not required for the caller to hold c.L
    // during the call.
    //
    // Signal() does not affect goroutine scheduling priority; if other goroutines
    // are attempting to lock c.L, they may be awoken before a "waiting" goroutine.
    func (c *Cond) Signal() {
    	c.checker.check()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/continuous/ContinuousIntegrationTestFixtureTest.groovy

            thrown(UnexpectedBuildFailure)
        }
    
        def "output parsing with info logging after 'waiting for changes' line"() {
            given:
            def sampleTest = testCase()
            def gradleHandle = setupStubs(sampleTest)
            gradleHandle.getStandardOutput() >> '''
    :sometask
    
    BUILD SUCCESSFUL in 1s
    
    Waiting for changes to input files... (ctrl-d then enter to exit)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectationState.java

                unexpectedPath = path;
            }
            return new UnexpectedRequestFailure(requestMethod, path, context);
        }
    
        /**
         * Signals that a timeout occurred waiting to handle the given request.
         *
         * @return A response to return to the client
         */
        public ResponseProducer timeout(String requestMethod, String path, String waitingFor, String context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerAwaitableFileLockReleasedSignalTest.groovy

                    }
                }
            }
    
            then:
            poll {
                assert signal.waiting
            }
    
            when:
            signal.trigger()
    
            then:
            poll {
                assert signalCount.get() == 1
                assert signal.waiting
            }
    
            when:
            signal.trigger()
    
            then:
            poll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * ordinary tests.
     *
     * <p>Failure of the expected event to occur within an implementation-defined "reasonable" time
     * period or an interrupt while waiting for the expected event will result in a {@link
     * RuntimeException}.
     *
     * <p>Here's an example that tests a {@code finalize} method:
     *
     * <pre>{@code
     * final CountDownLatch latch = new CountDownLatch(1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            // other builds in the tree. The thread will signal the other threads and then stop running as a worker. At this point in time, work will be ready to start but all the (other) workers will
            // still be waiting. A short time later, the workers will wake up and start running the work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/parser.go

    			p := ps[ev.P]
    			if err := checkRunning(p, g, ev, false); err != nil {
    				return err
    			}
    			g.state = gWaiting
    			g.evStart = nil
    			p.g = 0
    
    			gs[ev.G] = g
    			ps[ev.P] = p
    		case EvGoSysExit:
    			g := gs[ev.G]
    			if g.state != gWaiting {
    				return fmt.Errorf("g %d is not waiting during syscall exit (time %d)", ev.G, ev.Ts)
    			}
    			g.state = gRunnable
    			g.ev = ev
    
    			gs[ev.G] = g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

            toolingApi.requireDaemons()
            def outInstance = System.out
            def errInstance = System.err
            def inInstance = System.in
            def handle = sync.expectAndBlock("waiting")
    
            buildFile << """
                ${sync.callFromBuild("waiting")}
                task hey
            """
    
            when:
            GradleProject model = toolingApi.withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top