Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 765 for workerCh (0.33 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            FilteringClassLoader.Spec gradleApiFilter = classLoaderRegistry.getGradleApiFilterSpec();
            VisitableURLClassLoader.Spec userSpec = getUserSpec("worker-loader", additionalClasspath, classes);
    
            // Add the Gradle API filter between the user classloader and the worker infrastructure classloader
            return new HierarchicalClassLoaderStructure(workerExtensionSpec)
                    .withChild(gradleApiFilter)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DefaultWorkerExecutorParallelTest.groovy

    import org.gradle.process.internal.JavaForkOptionsInternal
    import org.gradle.process.internal.worker.child.WorkerDirectoryProvider
    import org.gradle.test.fixtures.concurrent.ConcurrentSpec
    import org.gradle.util.UsesNativeServices
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkQueue
    import org.gradle.workers.WorkerExecutionException
    import spock.lang.TempDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:22:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLoggingIntegrationTest.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.api.internal.tasks.execution.ExecuteTaskBuildOperationType
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.test.fixtures.ConcurrentTestUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerDirectoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import java.io.File;
    
    public interface WorkerDirectoryProvider {
        /**
         * Returns a File object representing the working directory for workers.
         */
        File getWorkingDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 860 bytes
    - Viewed (0)
  5. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/DefaultWorkerDirectoryProvider.java

            this.gradleUserHomeDir = gradleUserHomeDirProvider.getGradleUserHomeDirectory();
        }
    
        @Override
        public File getWorkingDirectory() {
            File defaultWorkerDirectory = new File(gradleUserHomeDir, "workers");
            if (!defaultWorkerDirectory.exists()) {
                GFileUtils.mkdirs(defaultWorkerDirectory);
            }
            return defaultWorkerDirectory;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

        def "generates events for worker actions with new Worker API (post 5.1)"() {
            expect:
            runBuildWithWorkerAction() != null
        }
    
        private ProgressEvents.Operation runBuildWithWorkerAction() {
            buildFile << """
                import org.gradle.workers.*
                abstract class MyWorkerAction implements WorkAction<WorkParameters.None>{
                    @Override public void execute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Represents the common configuration of a worker.  Used when submitting an item of work
     * to the {@link WorkerExecutor}.
     *
     * @since 5.6
     */
    @HasInternalProtocol
    public interface WorkerSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 897 bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/AbstractCodeQualityTask.java

                forkOptions.jvmArgs("--add-opens", OPEN_MODULES_ARG);
            }
        }
    
        /**
         * Java launcher used to start the worker process
         */
        @Nested
        public abstract Property<JavaLauncher> getJavaLauncher();
    
        /**
         * The minimum heap size for the worker process.  When unspecified, no minimum heap size is set.
         *
         * Supports units like the command-line option {@code -Xms} such as {@code "1g"}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    					utilruntime.HandleError(err)
    				}
    			}
    		}
    	}
    	close(c.syncedInitialSet)
    
    	// start up your worker threads based on workers.  Some controllers have multiple kinds of workers
    	for i := 0; i < workers; i++ {
    		// runWorker will loop until "something bad" happens.  The .Until will then rekick the worker
    		// after one second
    		go wait.Until(c.runWorker, time.Second, stopCh)
    	}
    
    	// wait until we're told to stop
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/concepts.md

    Here are some possible combinations and strategies:
    
    * **Gunicorn** managing **Uvicorn workers**
        * Gunicorn would be the **process manager** listening on the **IP** and **port**, the replication would be by having **multiple Uvicorn worker processes**.
    * **Uvicorn** managing **Uvicorn workers**
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top