Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for workerCh (0.14 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLoggingProtocol.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.internal.logging.events.LogEvent;
    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    
    /**
     * Protocol for sending logging information back from a worker process to the daemon.
     */
    public interface WorkerLoggingProtocol {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/problem/WorkerProblemEmitter.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.problem;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.problems.internal.Problem;
    import org.gradle.api.problems.internal.ProblemEmitter;
    import org.gradle.internal.operations.OperationIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * Worker-side implementation of {@link ProblemEmitter}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/BuildActionsFactoryTest.groovy

                    return useCurrentProcess
                }
            }
        }
    
        def "check that --max-workers overrides org.gradle.workers.max"() {
            when:
            def action = convert('--max-workers=5')
    
            then:
            unwrapAction(action).startParameter.maxWorkerCount == 5
        }
    
        def "by default daemon is used"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    gradlebuildJava.usedInWorkers()
    
    description = """Generalized test infrastructure to support executing tests in test workers."""
    
    dependencies {
        api(projects.baseServices)
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.messaging)
        api(projects.serialization)
        api(projects.time)
        api(projects.workerMain)
    
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 883 bytes
    - Viewed (0)
  5. platforms/core-execution/hashing/build.gradle.kts

        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools for creating secure hashes for files and other content"
    
    gradlebuildJava.usedInWorkers() // org.gradle.internal.nativeintegration.filesystem.Stat is used in workers
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.guava)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 400 bytes
    - Viewed (0)
  6. internal/config/batch/batch.go

    }
    
    // ExpirationWait returns the duration for which a batch expiration worker
    // would wait before working on next object.
    func (opts Config) ExpirationWait() time.Duration {
    	configMu.RLock()
    	defer configMu.RUnlock()
    
    	return opts.ExpirationWorkersWait
    }
    
    // ReplicationWait returns the duration for which a batch replication worker
    // would wait before working on next object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/build.gradle.kts

        runtimeOnly(project(":composite-builds"))
        runtimeOnly(project(":resources-http"))
        // TODO - move the isolatable serializer to model-core to live with the isolatable infrastructure
        runtimeOnly(project(":workers"))
    
        runtimeOnly(libs.kotlinReflect)
    
        testImplementation(projects.io)
        testImplementation(testFixtures(project(":core")))
        testImplementation(libs.mockitoKotlin2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLogEventListener.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.internal.logging.events.LogEvent;
    import org.gradle.internal.logging.events.OutputEvent;
    import org.gradle.internal.logging.events.OutputEventListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/testing/internal/testdeps/deps.go

    	// Worker processes may or may not receive a signal when the user presses ^C
    	// On POSIX operating systems, a signal sent to a process group is delivered
    	// to all processes in that group. This is not the case on Windows.
    	// If the worker is interrupted, return quickly and without error.
    	// If only the coordinator process is interrupted, it tells each worker
    	// process to stop by closing its "fuzz_in" pipe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/antlr/build.gradle.kts

        implementation(libs.slf4jApi)
    
        compileOnly("antlr:antlr:2.7.7") {
            because("this dependency is downloaded by the antlr plugin")
        }
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":workers"))
    
        testImplementation(project(":base-services-groovy"))
        testImplementation(testFixtures(project(":core")))
        testImplementation(project(":file-collections"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top