Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 436 for Parallel (0.24 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest.groovy

    class ParallelCompilerDaemonIntegrationTest extends AbstractIntegrationSpec {
        @Rule TestResources resources = new TestResources(temporaryFolder)
    
        def "daemon compiler can handle --parallel"() {
            generateProjects(10, 10, 10)
    
            args("--parallel")
    
            expect:
            succeeds("classes")
        }
    
        private generateProjects(int numProjects, int numJavaSources, int numGroovySources) {
            def settingsText = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *
     * <ul>
     *     <li>Parallel execution of work items within a single task</li>
     *     <li>Execution in isolated contexts such as an isolated classloader or even a separate process</li>
     *     <li>Safe execution of multiple tasks in parallel</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. gradle.properties

    org.gradle.caching=true
    org.gradle.jvmargs='-Dfile.encoding=UTF-8'
    org.gradle.parallel=true
    android.enableJetifier=true
    android.useAndroidX=true
    kotlin.mpp.stability.nowarn=true
    kotlin.js.compiler=ir
    kotlin.incremental.js.ir=true
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 09:58:21 UTC 2024
    - 343 bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

     * and with intentionally unused source files in each source set. It currently uses a single
     * component per project so we can use parallel project execution. Generates headers, C and C++
     * files.
     *
     * "monolithic" here means the project follows a monorepo layout. If we used intra-parallel
     * execution, this might be built as a single project with many components instead.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/MultiEdgesConnecting.java

    /**
     * A class to represent the set of edges connecting an (implicit) origin node to a target node.
     *
     * <p>The {@link #outEdgeToNode} map allows this class to work on networks with parallel edges. See
     * {@link EdgesConnecting} for a class that is more efficient but forbids parallel edges.
     *
     * @author James Sexton
     * @param <E> Edge parameter type
     */
    @ElementTypesAreNonnullByDefault
    abstract class MultiEdgesConnecting<E> extends AbstractSet<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                    session.getProjects().size());
            boolean parallel = nThreads > 1;
            // Propagate the parallel flag to the root session and all of the cloned sessions in each project segment
            session.setParallel(parallel);
            for (ProjectSegment segment : projectBuilds) {
                segment.getSession().setParallel(parallel);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/fix/main_test.go

    		t.Run(tt.Name, func(t *testing.T) {
    			if tt.Version == "" {
    				if testing.Verbose() {
    					// Don't run in parallel: cmd/fix sometimes writes directly to stderr,
    					// and since -v prints which test is currently running we want that
    					// information to accurately correlate with the stderr output.
    				} else {
    					t.Parallel()
    				}
    			} else {
    				old := *goVersion
    				*goVersion = tt.Version
    				defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/settings.gradle.kts

    rootProject.name = "parallel-test-execution"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/global_test.go

    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    // Make sure "hello world" does not link in all the
    // fmt.scanf routines. See issue 6853.
    func TestScanfRemoval(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	// Make a directory to work in.
    	dir := t.TempDir()
    
    	// Create source.
    	src := filepath.Join(dir, "test.go")
    	f, err := os.Create(src)
    	if err != nil {
    		t.Fatalf("could not create source file: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ParallelResolveArtifactSet.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A wrapper that prepares artifacts in parallel when visiting the delegate.
     * This is done by collecting all artifacts to prepare and/or visit in a first step.
     * The collected artifacts are prepared in parallel and subsequently visited in sequence.
     */
    public abstract class ParallelResolveArtifactSet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top