- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 118 for NonNull (0.06 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java
*/ @Nonnull default SettingsBuilderResult build( @Nonnull Session session, @Nonnull Source installationSettingsSource, @Nonnull Source projectSettingsSource, @Nonnull Source userSettingsSource) { return build(SettingsBuilderRequest.build( session, installationSettingsSource, projectSettingsSource, userSettingsSource)); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
*/ void addResource(@Nonnull Project project, @Nonnull ProjectScope scope, @Nonnull Resource resource); /** * Returns an immutable list of project remote repositories (directly specified or inherited). * * @param project the project */ @Nonnull List<RemoteRepository> getRemoteProjectRepositories(@Nonnull Project project); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 24 11:52:48 UTC 2024 - 7.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
@Immutable public interface ArtifactInstallerRequest { @Nonnull Session getSession(); @Nonnull Collection<ProducedArtifact> getArtifacts(); @Nonnull static ArtifactInstallerRequestBuilder builder() { return new ArtifactInstallerRequestBuilder(); } @Nonnull static ArtifactInstallerRequest build(Session session, Collection<ProducedArtifact> artifacts) { return builder()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 3.4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 8.3K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java
* * @param level the severity level of the message * @param message the message to be logged */ default void log(@Nonnull Level level, @Nonnull String message) { log(level, message, null); } /** * Logs a message at the specified level with an associated exception. * * @param level the severity level of the message
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 4.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
*/ @Nonnull Map<String, Object> getPluginContext(@Nonnull Project project); /** * Retrieves the service for the interface * * @throws NoSuchElementException if the service could not be found */ @Nonnull <T extends Service> T getService(@Nonnull Class<T> clazz); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
/** * {@return the group identifier of the artifact} * * @see ArtifactCoordinates#getGroupId() */ @Nonnull String getGroupId(); /** * {@return the identifier of the artifact} * * @see ArtifactCoordinates#getArtifactId() */ @Nonnull String getArtifactId(); /** * {@return the version of the artifact}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 4.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/Utils.java
} return str; } @Nonnull public static Path getCanonicalPath(Path path) { requireNonNull(path, "path"); try { return path.toRealPath(); } catch (IOException e) { return getCanonicalPath(path.getParent()).resolve(path.getFileName()); } } @Nonnull public static Map<String, String> toMap(Properties properties) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
COLLECT, FLATTEN, RESOLVE } @Nonnull Session getSession(); @Nonnull RequestType getRequestType(); @Nonnull Optional<Project> getProject(); @Nonnull Optional<Artifact> getRootArtifact(); @Nonnull Optional<DependencyCoordinates> getRoot(); @Nonnull Collection<DependencyCoordinates> getDependencies(); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 17.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
return build(session, installationSettingsSource, null, userSettingsSource); } @Nonnull static SettingsBuilderRequest build( @Nonnull Session session, @Nonnull Path installationSettingsPath, @Nonnull Path userSettingsPath) { return build(session, Source.fromPath(installationSettingsPath), null, Source.fromPath(userSettingsPath)); } @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 09:25:53 UTC 2024 - 7.9K bytes - Viewed (0)