Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for startUp (0.58 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/messaging/WorkerConfig.java

    import org.gradle.process.internal.worker.WorkerProcessContext;
    
    import java.io.Serializable;
    
    /**
     * All configuration options to be transferred to a worker process during worker startup.
     */
    public class WorkerConfig {
        private final LogLevel logLevel;
        private final boolean publishJvmMemoryInfo;
        private final String gradleUserHomeDirPath;
        private final MultiChoiceAddress serverAddress;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                    // leaving one in an unsafe state).
                    workerDaemonClientCancellationHandler.start();
                    
                    // wrap in build operation for logging startup failures
                    final WorkerDaemonClient client = CurrentBuildOperationRef.instance().with(parentBuildOperation, this::reserveClient);
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. gradlew.bat

    @rem limitations under the License.
    @rem
    @rem SPDX-License-Identifier: Apache-2.0
    @rem
    
    @if "%DEBUG%"=="" @echo off
    @rem ##########################################################################
    @rem
    @rem  Gradle startup script for Windows
    @rem
    @rem ##########################################################################
    
    @rem Set local scope for the variables with windows NT shell
    if "%OS%"=="Windows_NT" setlocal
    
    set DIRNAME=%~dp0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:31:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            when:
            withWatchFs().run("assemble", "--info")
            then:
            skipped(":includedBuild:jar")
            // configuration cache registers all build directories at startup so the cache fingerprint can be checked
            def expectedWatchableCount = GradleContextualExecuter.isConfigCache() ? 4 : 2
            assertWatchableHierarchies([ImmutableSet.of(consumer, includedBuild)] * expectedWatchableCount)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                // We use a dummy implementation of this as creating a real resource handler would require us to add
                // an additional jar to the worker runtime startup and a resource handler isn't actually needed in
                // the worker process.
                ResourceHandler resourceHandler = new ResourceHandler() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    }
    
    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteOutput.java

            this.file = file;
            bufferedOutputStream = new ResettableBufferedOutputStream(new RandomAccessFileOutputStream(file));
        }
    
        /**
         * Starts writing to the given offset. Can be beyond the current length of the file.
         */
        public DataOutputStream start(long offset) throws IOException {
            file.seek(offset);
            bufferedOutputStream.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            assertDifferentDaemonsWereUsed("startDaemon2", "startDaemon3")
            assertDifferentDaemonsWereUsed("startDaemon1", "startDaemon3")
        }
    
        def "starts a new worker daemon when there are no idle compatible worker daemons available"() {
            blockingServer.start()
            blockingServer.expectConcurrent("runInDaemon", "startNewDaemon")
    
            fixture.withWorkActionClassInBuildSrc()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. gradlew

            then
                arg=$( cygpath --path --ignore --mixed "$arg" )
            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

                if (file.endsWith(".gradle.kts")) {
                    withProblem("Settings file '${relativePath(file)}': external process started")
                } else {
                    withProblem("Settings file '${relativePath(file)}': line 5: external process started")
                }
            }
    
            where:
            snippetsFactory             | file
            exec().groovy               | "included/settings.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top