Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorProblemsApiIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.jvm.Jvm
    import org.gradle.workers.fixtures.WorkerExecutorFixture
    
    class WorkerExecutorProblemsApiIntegrationTest extends AbstractIntegrationSpec {
    
        // Worker-written file containing the build operation id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

     * 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.workers.internal
    
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/ports/FixedAvailablePortAllocatorTest.groovy

        def "assigns a unique fixed port range based on worker id (totalWorkers: #totalWorkers, totalAgents: #totalAgents)" () {
            int rangeSize = FixedAvailablePortAllocator.DEFAULT_RANGE_SIZE - 1
            def portAllocators = (1..totalAgents).collect { agentNum ->
                (1..totalWorkers).collect { workerId ->
                    def portAllocator = new FixedAvailablePortAllocator(workerId, agentNum, totalAgents)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.api.logging.LogLevel
    import org.gradle.process.internal.worker.MultiRequestClient
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import spock.lang.Specification
    
    class WorkerDaemonClientTest extends Specification {
        def "underlying worker is executed when client is executed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorJdkVersionsIntegrationTest.groovy

                }
            """
            file("included/src/main/java/com/example/TestWorkAction.java") << """
                package com.example;
    
                import org.gradle.workers.WorkAction;
                import org.gradle.workers.WorkParameters;
                import javax.inject.Inject;
    
                abstract class TestWorkAction implements WorkAction<WorkParameters.None> {
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

                "plugin2-runtime"
            ]
    
            and:
            1 * moduleRegistry.getModule("gradle-worker-main") >> module("gradle-worker-main")
            1 * moduleRegistry.getModule("gradle-launcher") >> module("gradle-launcher", module("gradle-cli"))
            1 * moduleRegistry.getModule("gradle-workers") >> module("gradle-workers")
            1 * moduleRegistry.getModule("gradle-dependency-management") >> module("gradle-dependency-management")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestWorkerTest.groovy

            1 * connection.useParameterSerializers(_)
            1 * connection.connect() >> {
                start {
                    worker.startProcessing()
                    worker.processTestClass(test)
                    thread.block()
                    instant.stopped
                    worker.stop()
                }
            }
            1 * processor.startProcessing(_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    	// time that should be spent in the fractional mark worker on
    	// each P that isn't running a dedicated worker.
    	//
    	// For example, if the utilization goal is 25% and there are
    	// no dedicated workers, this will be 0.25. If the goal is
    	// 25%, there is one dedicated worker, and GOMAXPROCS is 5,
    	// this will be 0.05 to make up the missing 5%.
    	//
    	// If this is zero, no fractional workers are needed.
    	fractionalUtilizationGoal float64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

    import org.gradle.internal.stream.EncodedStream;
    import org.gradle.process.internal.JavaExecHandleBuilder;
    import org.gradle.process.internal.worker.GradleWorkerMain;
    import org.gradle.process.internal.worker.WorkerProcessBuilder;
    import org.gradle.process.internal.worker.messaging.WorkerConfig;
    import org.gradle.process.internal.worker.messaging.WorkerConfigSerializer;
    
    import java.io.DataOutputStream;
    import java.io.File;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonExpirationTest.groovy

            then:
            1 * client1.stop()
            1 * client2.stop()
            1 * client3.stop()
    
            and:
            reserveIdleClient(twoGbOptions) == null
        }
    
        def "expires idle worker daemons workers that have not provided usage but max heap is specified"() {
            given:
            reportsMemoryUsage = false
            def client1 = reserveNewClient(threeGbOptions)
            def client2 = reserveNewClient(twoGbOptions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top