Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setDegreeOfConcurrency (0.24 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

            mavenExecutionRequest.setExecutionListener(new AbstractExecutionListener());
            mavenExecutionRequest.setGoals(Arrays.asList("clean", "aggr", "install"));
            mavenExecutionRequest.setDegreeOfConcurrency(1);
            final MavenSession session = new MavenSession(null, null, mavenExecutionRequest, defaultMavenExecutionResult);
            final ProjectDependencyGraphStub dependencyGraphStub = new ProjectDependencyGraphStub();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        String getMakeBehavior();
    
        /**
         * Set's the parallel degree of concurrency used by the build.
         *
         * @param degreeOfConcurrency
         */
        void setDegreeOfConcurrency(int degreeOfConcurrency);
    
        /**
         * @return the degree of concurrency for the build.
         */
        int getDegreeOfConcurrency();
    
        // Recursive (really to just process the top-level POM)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            this.executionListener = executionListener;
    
            return this;
        }
    
        @Override
        public void setDegreeOfConcurrency(final int degreeOfConcurrency) {
            this.degreeOfConcurrency = degreeOfConcurrency;
        }
    
        @Override
        public int getDegreeOfConcurrency() {
            return degreeOfConcurrency;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                int degreeOfConcurrency = calculateDegreeOfConcurrency(threadConfiguration);
                if (degreeOfConcurrency > 1) {
                    request.setBuilderId("multithreaded");
                    request.setDegreeOfConcurrency(degreeOfConcurrency);
                }
            }
    
            //
            // Allow the builder to be overridden by the user if requested. The builders are now pluggable.
            //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top