- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 245 for notNull (0.08 sec)
-
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-core/src/main/java/org/apache/maven/api/services/Transport.java
*/ void putString(@Nonnull String source, @Nonnull Charset charset, @Nonnull URI relativeTarget); /** * PUTs the source string using UTF8 charset to target URI. The target MUST BE relative from the * {@link RemoteRepository#getUrl()} root. * * @throws RuntimeException If PUT fails for any reason. */ default void putString(@Nonnull String source, @Nonnull URI relativeTarget) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 4.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java
* @return The calculated checksums, indexed by algorithms, never {@code null}. * @throws NullPointerException if passed in any parameter is {@code null}. */ @Nonnull Map<ChecksumAlgorithm, String> calculate(@Nonnull byte[] data, @Nonnull Collection<ChecksumAlgorithm> algorithms); /** * Calculates checksums for specified data. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Jul 10 20:52:34 UTC 2024 - 6.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryFactory.java
@Nonnull RemoteRepository createRemote(@Nonnull Repository repository); @Nonnull List<RemoteRepository> aggregate( @Nonnull Session session, @Nonnull List<RemoteRepository> dominant, @Nonnull List<RemoteRepository> recessive, boolean processRecessive);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu May 02 15:10:38 UTC 2024 - 1.8K 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/services/xml/XmlFactory.java
return read(reader, true); } @Nonnull default T read(@Nonnull Reader reader, boolean strict) throws XmlReaderException { return read(XmlReaderRequest.builder().reader(reader).strict(strict).build()); } @Nonnull T read(@Nonnull XmlReaderRequest request) throws XmlReaderException; default void write(@Nonnull T content, @Nonnull Path path) throws XmlWriterException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K 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)