- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 127 for NonNull (0.32 seconds)
-
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)); } /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 5.1K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
*/ @Nonnull Optional<String> alternatePomFile(); /** * Indicates whether Maven should operate in non-recursive mode (i.e., not build child modules). * * @return an {@link Optional} containing true if non-recursive mode is enabled, false if disabled, or empty if not specified */ @Nonnull Optional<Boolean> nonRecursive(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 8K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java
*/ record Entry( @Nonnull Level level, @Nonnull String message, @Nullable Throwable error) {} /** * If this is an accumulating log, it will "drain" this instance. It returns the accumulated log entries, and * also "resets" this instance to empty (initial) state. */ @Nonnull default List<Entry> drain() { return List.of();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 5K bytes - Click Count (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); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 36.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
Map<Class<? extends @NonNull B>, B> backingMap) { return new MutableClassToInstanceMap<>(backingMap); } private final Map<Class<? extends @NonNull B>, B> delegate; private MutableClassToInstanceMap(Map<Class<? extends @NonNull B>, B> delegate) { this.delegate = checkNotNull(delegate); } @Override protected Map<Class<? extends @NonNull B>, B> delegate() { return delegate; }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Aug 11 22:10:29 GMT 2025 - 6.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
} @Nonnull @Override public Collection<SourceRoot> getSourceRoots(@Nonnull Project project) { MavenProject prj = getMavenProject(requireNonNull(project, "project" + " cannot be null")); return prj.getSourceRoots(); } @Nonnull @Override public Stream<SourceRoot> getEnabledSourceRoots(@Nonnull Project project, ProjectScope scope, Language language) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Dec 17 16:17:01 GMT 2025 - 10.9K bytes - Click Count (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}.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jun 26 07:56:58 GMT 2025 - 4.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactory.java
*/ @Nonnull default ArtifactCoordinates create(@Nonnull Session session, @Nonnull String coordinatesString) { return create(ArtifactCoordinatesFactoryRequest.build(session, coordinatesString)); } @Nonnull default ArtifactCoordinates create( @Nonnull Session session, String groupId, String artifactId, String version, String extension) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Mar 24 14:10:11 GMT 2025 - 3.4K bytes - Click Count (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" />
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Dec 19 15:00:20 GMT 2025 - 5.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* * @return The source from which the model was read, never {@code null}. */ @Nonnull ModelSource getSource(); /** * Gets the file model. * * @return the file model, never {@code null}. */ @Nonnull Model getFileModel(); /** * Gets the file model + build pom transformation, without inheritance nor interpolation. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 4.2K bytes - Click Count (0)