Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 255 for Idle (0.05 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    2019-10-03T09:33:08.990+0200 [DEBUG] [org.gradle.execution.plan.DefaultPlanExecutor] Task worker [Thread[main,5,main]] finished, busy: 0.0 secs, idle: 0.021 secs
    \u001B[0K
    \u001B[0K
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/runtime/nonwindows_stub.go

    // timer precision to keep the timer error acceptable.
    const osRelaxMinNS = 0
    
    var haveHighResSleep = true
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    func osRelax(relax bool) {}
    
    // enableWER is called by setTraceback("wer").
    // Windows Error Reporting (WER) is only supported on Windows.
    func enableWER() {}
    
    // winlibcall is not implemented on non-Windows systems,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  3. src/net/http/export_test.go

    	return t.closeIdle
    }
    
    func (t *Transport) QueueForIdleConnForTesting() {
    	t.queueForIdleConn(nil)
    }
    
    // PutIdleTestConn reports whether it was able to insert a fresh
    // persistConn for scheme, addr into the idle connection pool.
    func (t *Transport) PutIdleTestConn(scheme, addr string) bool {
    	c, _ := net.Pipe()
    	key := connectMethodKey{"", scheme, addr, false}
    
    	if t.MaxConnsPerHost > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/runtime/lock_js.go

    		gp:       getg(),
    		returned: false,
    	}
    	events = append(events, e)
    
    	if !eventHandler() {
    		// If we did not handle a window event, the idle timeout was triggered, so we can clear it.
    		clearIdleTimeout()
    	}
    
    	// wait until all goroutines are idle
    	e.returned = true
    	gopark(nil, nil, waitReasonZero, traceBlockGeneric, 1)
    
    	events[len(events)-1] = nil
    	events = events[:len(events)-1]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Busy
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle
    
    class DefaultDaemonConnectorTest extends Specification {
    
        def javaHome = new File("tmp")
        def connectTimeoutSecs = 1
        def daemonCounter = 0
    
        class OutgoingConnectorStub implements OutgoingConnector {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultWorkInProgressFormatterTest.groovy

            given:
            def operation = new ProgressOperation(null, null, new OperationIdentifier(1), null)
    
            expect:
            statusBarFormatter.format(operation).first().text == "> IDLE"
            statusBarFormatter.format(operation).first().style == StyledTextOutput.Style.Normal
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/AsyncDispatchTest.groovy

        def 'dispatches message to an idle target'() {
            when:
            dispatch.dispatchTo(target1)
            dispatch.dispatch('message1')
            dispatch.dispatch('message2')
            dispatch.stop()
    
            then:
            1 * target1.dispatch('message1')
            then:
            1 * target1.dispatch('message2')
        }
    
        def 'dispatch does not block while no idle target available'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	maxIdleTime       time.Duration          // maximum amount of time a connection may be idle before being closed
    	cleanerCh         chan struct{}
    	waitCount         int64 // Total number of connections waited for.
    	maxIdleClosed     int64 // Total number of connections closed due to idle count.
    	maxIdleTimeClosed int64 // Total number of connections closed due to idle time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/AsyncConsumerActionExecutor.java

         */
        void stop();
    
        String getDisplayName();
    
        /**
         * Requests cancellation on the current operation and send a 'stop when idle' message to the daemon.
         */
        void disconnect();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            }
            numberOfOverflows <= numberOfRuns / 10
        }
    
        def "file watching works with many changes between two builds"() {
            // Use 40 minutes idle timeout since the test may be running longer with an idle daemon
            executer.withDaemonIdleTimeoutSecs(2400)
            def numberOfChangedSourcesFilesPerBatch = maxFileChangesWithoutOverflow
            def numberOfChangeBatches = 500
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top