Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for singlethreaded (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.lifecycle.internal.builder.singlethreaded;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.List;
    
    import org.apache.maven.execution.MavenSession;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private List<ArtifactRepository> pluginArtifactRepositories;
    
        private ExecutionListener executionListener;
    
        private int degreeOfConcurrency = 1;
    
        private String builderId = "singlethreaded";
    
        private Map<String, List<ToolchainModel>> toolchains;
    
        /**
         * Suppress SNAPSHOT updates.
         *
         * @issue MNG-2681
         */
        private boolean noSnapshotUpdates = false;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

            mavenExecutionRequest.setLoggingLevel(MavenExecutionRequest.LOGGING_LEVEL_INFO);
            mavenExecutionRequest.setDegreeOfConcurrency(1);
            mavenExecutionRequest.setBuilderId("singlethreaded");
            return mavenExecutionRequest;
        }
    
        @Override
        protected void lookup(MavenContext context) throws Exception {
            if (context.maven == null) {
                super.lookup(context);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top