Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 101 for bursty (0.11 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleEncodingSpec.groovy

        def "if a daemon exists but is using a file encoding, a new compatible daemon will be created and used"() {
            when:
            startBuild(null, "US-ASCII")
            waitForBuildToWait()
    
            then:
            busy()
            daemonContext {
                assert daemonOpts.contains("-Dfile.encoding=US-ASCII")
            }
    
            then:
            completeBuild()
    
            then:
            idle()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartupMessage.java

            if (totalUnavailableDaemons > 0) {
                final List<String> reasons = new ArrayList<>();
                if (numBusy > 0) {
                    reasons.add(numBusy + " busy");
                }
                if (numIncompatible > 0) {
                    reasons.add(numIncompatible + " incompatible");
                }
                if (numStopped > 0) {
                    reasons.add(numStopped + " stopped");
    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/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/InvalidateVirtualFileSystemAfterChangeCrossVersionSpec.groovy

                connection.notifyDaemonsAboutChangedPaths(toPaths(changedPaths))
            }
    
            then:
            pathsInvalidated()
        }
    
        @TargetGradleVersion(">=6.8")
        def "invalidates paths for single busy daemon"() {
            server.start()
            buildFile << """
                task block {
                    doLast {
                        ${server.callFromBuild("block")}
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/runtime/lock_wasip1.go

    //go:build wasip1
    
    package runtime
    
    // wasm has no support for threads yet. There is no preemption.
    // See proposal: https://github.com/WebAssembly/threads
    // Waiting for a mutex or timeout is implemented as a busy loop
    // while allowing other goroutines to run.
    
    const (
    	mutex_unlocked = 0
    	mutex_locked   = 1
    
    	active_spin     = 4
    	active_spin_cnt = 30
    )
    
    func mutexContended(l *mutex) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasher.java

                    }
    
                    // If both the peekAhead buffer and the input stream are empty, we're done
                    if (next == -1) {
                        break;
                    }
    
                    // Bust out if we detect a binary file
                    if (isControlCharacter(next)) {
                        return Optional.empty();
                    }
    
                    // If the next bytes are '\r' or '\r\n', replace it with '\n'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    [listing]
    ----
    language: java
    install: skip
    
    os: linux
    dist: trusty
    jdk: oraclejdk8
    
    script:
      - ./gradlew build --scan -s
    ----
    
    Select the project from the Travis CI profile.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/tracebackctxt.go

    			}
    		}(i)
    	}
    	wg.Wait()
    
    	fmt.Println("OK")
    }
    
    //export TracebackContextPreemptionGoFunction
    func TracebackContextPreemptionGoFunction(i C.int) {
    	// Do some busy work.
    	fmt.Sprintf("%d\n", i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 29 15:30:38 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

            }
            toolingApi.daemons.daemon.assertIdle()
    
            when:
            toolingApi.close()
    
            then:
            toolingApi.daemons.daemon.stops()
        }
    
        def "cleans up busy daemons once they become idle when tooling API session is shutdown"() {
            given:
            server.start()
            buildFile << """
    task slow { doLast { ${server.callFromBuild('sync')} } }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

         */
        void runCommand(Runnable command, String commandDisplayName) throws DaemonUnavailableException, DaemonStoppedException;
    
        enum State {Idle, Busy, Canceled, StopRequested, Stopped, ForceStopped, Broken}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

    import org.gradle.platform.base.internal.VariantAspect;
    import org.gradle.reporting.ReportRenderer;
    import org.gradle.util.internal.GUtil;
    
    import java.util.Map;
    import java.util.TreeMap;
    
    // TODO - bust up this hierarchy and compose using interfaces instead
    public abstract class AbstractBinaryRenderer<T extends BinarySpec> extends ReportRenderer<BinarySpec, TextReportBuilder> {
        private final ModelSchemaStore schemaStore;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top