- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 249 for nonNull (0.11 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java
* @return The path, relative to the local repository's base directory. */ @Nonnull Path getPathForRemoteArtifact( @Nonnull Session session, @Nonnull LocalRepository local, @Nonnull RemoteRepository remote, @Nonnull Artifact artifact);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Dec 08 09:10:49 UTC 2023 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/CoreRealm.java
* Obtain the {@link ClassRealm} used for Maven Core. * * @return the class realm of core. */ @Nonnull ClassRealm getRealm(); /** * Shorthand method to obtain the {@link ClassWorld} used for Maven Core. * * @return the class world in use. */ @Nonnull default ClassWorld getClassWorld() { return getRealm().getWorld(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ClassToInstanceMap.java
extends Map<Class<? extends @NonNull B>, B> { /** * Returns the value the specified class is mapped to, or {@code null} if no entry for this class * is present. This will only return a value that was bound to this specific class, not a value * that may have been bound to a subtype. */ @CheckForNull <T extends @NonNull B> T getInstance(Class<T> type); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverResult.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * * @since 4.0.0 */ @Experimental public interface VersionResolverResult { @Nonnull List<Exception> getExceptions(); @Nonnull Version getVersion(); @Nonnull Optional<Repository> getRepository();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java
*/ @Experimental public interface MojoExecution { @Nonnull Plugin getPlugin(); @Nonnull PluginExecution getModel(); @Nonnull MojoDescriptor getDescriptor(); @Nonnull String getExecutionId(); @Nonnull String getGoal(); @Nonnull String getLifecyclePhase(); @Nonnull Optional<XmlNode> getConfiguration();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ContainerCapsule.java
package org.apache.maven.cling.invoker; import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.cli.InvokerException; import org.apache.maven.api.services.Lookup; /** * Container capsule. */ public interface ContainerCapsule extends AutoCloseable { /** * The {@link Lookup} service backed by container in this capsule. */ @Nonnull Lookup getLookup(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java
*/ package org.apache.maven.api.services; import java.util.List; import org.apache.maven.api.Service; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.Nullable; /** * Service used to interact with the end user. * * @since 4.0.0 */ @Experimental public interface Prompter extends Service { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java
@Target(ElementType.TYPE) @Inherited public @interface Mojo { /** * goal name (required). * @return the goal name */ @Nonnull String name(); /** * default phase to bind your mojo. * @return the default phase */ @Nonnull String defaultPhase() default ""; /** * does your mojo requires a project to be executed? * @return requires a project */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 18:21:40 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
} return new ProjectBuilderResult() { @Nonnull @Override public String getProjectId() { return res.getProjectId(); } @Nonnull @Override public Optional<Path> getPomFile() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0)