- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 91 for getProject (0.06 seconds)
-
android/guava/src/com/google/common/annotations/GwtIncompatible.java
import java.lang.annotation.Target; /** * The presence of this annotation on an API indicates that the method may not be used with * the <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT). * * <p>This annotation behaves identically to <a href= * "http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/shared/GwtIncompatible.html">the * {@code @GwtIncompatible} annotation in GWT itself</a>. * * @author Charles Fry */
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Dec 16 19:54:45 GMT 2020 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
Map<Artifact, File> reactorProjects = new HashMap<>(session.getProjects().size()); for (MavenProject reactorProject : session.getProjects()) { reactorProjects.put( reactorProject.getArtifact(), reactorProject.getArtifact().getFile()); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 15.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.6K bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/Partially.java
* version. */ @GwtCompatible final class Partially { /** * The presence of this annotation on an API indicates that the method <i>may</i> be used with the * <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT) but that it has <i>some * restrictions</i>. */ @Retention(RetentionPolicy.CLASS) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java
List<MavenProject> projects; if (taskSegment.isAggregating()) { projects = Collections.singletonList(rootProject); } else { projects = session.getProjects(); } for (MavenProject project : projects) { ClassLoader tccl = Thread.currentThread().getContextClassLoader(); MavenProject currentProject = session.getCurrentProject();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Partially.java
* version. */ @GwtCompatible final class Partially { /** * The presence of this annotation on an API indicates that the method <i>may</i> be used with the * <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT) but that it has <i>some * restrictions</i>. */ @Retention(RetentionPolicy.CLASS) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
public Properties getSystemProperties() { return request.getSystemProperties(); } public Settings getSettings() { return settings; } public List<MavenProject> getProjects() { return projects; } /** * @deprecated use {@link #getTopDirectory()} ()} */ @Deprecated public String getExecutionRootDirectory() {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
return; } alreadyPlannedExecutions.add(mojoDescriptor); List<MavenProject> forkedProjects = LifecycleDependencyResolver.getProjects(project, session, mojoDescriptor.isAggregator()); for (MavenProject forkedProject : forkedProjects) { if (forkedProject != project) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 26.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
lifecycleDebugLogger.debugProjectPlan(project, executionPlan); if (session.getRequest().getDegreeOfConcurrency() > 1 && session.getProjects().size() > 1) { final Set<Plugin> unsafePlugins = executionPlan.getNonThreadSafePlugins(); if (!unsafePlugins.isEmpty()) { for (String s : MultilineMessageHelper.format(Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 10.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
this.session = session; this.reactorContext = reactorContext; this.threads = Math.min( session.getRequest().getDegreeOfConcurrency(), session.getProjects().size()); // Propagate the parallel flag to the root session session.setParallel(threads > 1);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0)