Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 765 for workerCh (0.13 sec)

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

        }
    
        def "expire worker daemons to free system memory"() {
            when:
            withDebugLogging()
            succeeds 'expireWorkers'
    
            then:
            outputContains 'Worker Daemon(s) expired to free some system memory'
        }
    
        def "worker daemons expiration can be disabled using a system property"() {
            when:
            withDebugLogging()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/controller/namespace/namespace_controller.go

    	if !cache.WaitForNamedCacheSync("namespace", ctx.Done(), nm.listerSynced) {
    		return
    	}
    
    	logger.V(5).Info("Starting workers of namespace controller")
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, nm.worker, time.Second)
    	}
    	<-ctx.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

    import org.gradle.api.provider.ProviderFactory
    import org.gradle.api.DefaultTask
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.TaskAction
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerExecutor
    import org.gradle.tooling.provider.model.ToolingModelBuilder
    import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry
    
    plugins {
        id("application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/NoIsolationWorkerFactory.java

    import org.gradle.internal.operations.BuildOperationRef;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.workers.WorkAction;
    import org.gradle.workers.WorkParameters;
    import org.gradle.workers.WorkerExecutor;
    
    import javax.annotation.Nullable;
    import java.util.Collections;
    
    public class NoIsolationWorkerFactory implements WorkerFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.TaskAction
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerExecutor
    import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry
    import org.gradle.tooling.provider.model.ToolingModelBuilder
    
    plugins {
        id 'groovy'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::object-factory[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	// and there are no more workers (note that, since this is
    	// concurrent, this may be a transient state, but mark
    	// termination will clean it up). Between background workers
    	// and assists, we don't really know how many workers there
    	// will be, so we pretend to have an arbitrarily large number
    	// of workers, almost all of which are "waiting". While a
    	// worker is working it decrements nwait. If nproc == nwait,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatedClassloaderWorkerFactory.java

                        RequestHandler<TransportableActionExecutionSpec, DefaultWorkResult> worker = new IsolatedClassloaderWorker(workerClassLoader, internalServices, actionExecutionSpecFactory, instantiatorFactory);
                        return worker.run(transportableSpec);
                    });
                }
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.workers.fixtures.WorkerExecutorFixture
    
    import static org.gradle.workers.fixtures.WorkerExecutorFixture.ISOLATION_MODES
    
    @IntegrationTestTimeout(120)
    class WorkerExecutorErrorHandlingIntegrationTest extends AbstractWorkerExecutorIntegrationTest {
        WorkerExecutorFixture.WorkActionClass actionThatFailsInstantiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerServer.java

    import org.gradle.internal.service.ServiceLookup;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.workers.WorkAction;
    import org.gradle.workers.WorkParameters;
    
    import java.util.Collection;
    
    public class DefaultWorkerServer implements Worker {
        private final ServiceRegistry internalServices;
        private final InstantiatorFactory instantiatorFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkersServices.java

    import org.gradle.process.internal.health.memory.OsMemoryInfo;
    import org.gradle.process.internal.worker.WorkerProcessFactory;
    import org.gradle.process.internal.worker.child.DefaultWorkerDirectoryProvider;
    import org.gradle.process.internal.worker.child.WorkerDirectoryProvider;
    import org.gradle.workers.WorkerExecutor;
    
    @SuppressWarnings("UnusedMethod")
    public class WorkersServices extends AbstractGradleModuleServices {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top