Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java

            mavenExecutionRequest.setStartTime(new Date());
            mavenExecutionRequest.setLoggingLevel(MavenExecutionRequest.LOGGING_LEVEL_INFO);
            mavenExecutionRequest.setDegreeOfConcurrency(1);
            mavenExecutionRequest.setBuilderId("singlethreaded");
    
            context.mavenExecutionRequest = mavenExecutionRequest;
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. impl/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: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. impl/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: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. compat/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: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top