- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 53 for NonNull (0.06 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/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) -
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-cli/src/main/java/org/apache/maven/api/cli/Options.java
*/ default void warnAboutDeprecatedOptions(@Nonnull ParserRequest request, @Nonnull Consumer<String> printWriter) {} /** * Displays help information for these options. * * @param printWriter the string consumer to use for output */ void displayHelp(@Nonnull ParserRequest request, @Nonnull Consumer<String> printWriter);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 22 14:53:58 UTC 2024 - 6.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPluginXmlFactory.java
import static org.apache.maven.internal.impl.StaxLocation.getMessage; import static org.apache.maven.internal.impl.Utils.nonNull; @Named @Singleton public class DefaultPluginXmlFactory implements PluginXmlFactory { @Override public PluginDescriptor read(@Nonnull XmlReaderRequest request) throws XmlReaderException { nonNull(request, "request"); Path path = request.getPath(); URL url = request.getURL();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java
MessageBuilder resetStyle(); // // message building methods modelled after Ansi methods // @Nonnull @Override MessageBuilder append(CharSequence cs); @Nonnull @Override MessageBuilder append(CharSequence cs, int start, int end); @Nonnull @Override MessageBuilder append(char c); /** * Append content to the message buffer. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Nov 02 09:29:52 UTC 2024 - 7.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java
return project; } @Nonnull @Override public String getGroupId() { return project.getGroupId(); } @Nonnull @Override public String getArtifactId() { return project.getArtifactId(); } @Nonnull @Override public String getVersion() { return project.getVersion(); } @Nonnull @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.5K bytes - Viewed (0) -
.idea/misc.xml
<item index="5" class="java.lang.String" itemvalue="io.reactivex.annotations.NonNull" /> <item index="6" class="java.lang.String" itemvalue="io.reactivex.rxjava3.annotations.NonNull" /> <item index="7" class="java.lang.String" itemvalue="jakarta.annotation.Nonnull" /> <item index="8" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 06:19:29 UTC 2024 - 4.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java
@Nonnull private final InternalMavenSession session; private final Map<String, Path> paths = new ConcurrentHashMap<>(); @Inject public DefaultArtifactManager(@Nonnull InternalMavenSession session) { this.session = session; } @Nonnull @Override public Optional<Path> getPath(@Nonnull Artifact artifact) { String id = id(nonNull(artifact, "artifact"));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0)