- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 167 for NonNull (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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 { /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 17 15:52:15 GMT 2023 - 3.5K bytes - Click Count (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 extends Result<VersionResolverRequest> { @Nonnull List<Exception> getExceptions(); @Nonnull Version getVersion(); @Nonnull Optional<Repository> getRepository();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 1.3K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/cisupport/CIInfo.java
package org.apache.maven.api.cli.cisupport; import org.apache.maven.api.annotations.Nonnull; /** * CI support: this class contains gathered information and more from CI that Maven process runs on. * * @since 4.0.0 */ public interface CIInfo { /** * Short distinct name of CI system: "GH", "Jenkins", etc. */ @Nonnull String name(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactManager.java
import org.apache.maven.api.annotations.Nonnull; /** * * @since 4.0.0 */ @Experimental public interface ArtifactManager extends Service { /** * Returns the path of the file previously associated to this artifact * or {@code Optional.empty()} if no path has been associated. */ @Nonnull Optional<Path> getPath(@Nonnull Artifact artifact); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Aug 27 21:13:34 GMT 2024 - 1.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/CollectSpliteratorsTest.java
Arrays.spliterator(new String[] {"abc", "", "de", "f", "g", ""}), (String str) -> charactersOf(str).spliterator(), Spliterator.SIZED | Spliterator.DISTINCT | Spliterator.NONNULL, 7)) .expect('a', 'b', 'c', 'd', 'e', 'f', 'g'); } public void testFlatMap_nullStream() { SpliteratorTester.of( () -> CollectSpliterators.flatMap(
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 4.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
return request; } @Nonnull @Override public String getProjectId() { return res.getProjectId(); } @Nonnull @Override public Optional<Path> getPomFile() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Sep 13 09:44:11 GMT 2025 - 8.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java
* * @return the operating system name (never null) */ @Nonnull String name(); /** * Returns the OS architecture as reported by the system property "os.arch". * The value is converted to lowercase for consistency. * * @return the operating system architecture (never null) */ @Nonnull String arch(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Feb 10 14:12:18 GMT 2025 - 3.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java
/** * The packaging id. */ @Nonnull @Override String id(); /** * The language of this packaging. */ @Nonnull default Language language() { return type().getLanguage(); } /** * The type of main artifact produced by this packaging. */ @Nonnull Type type(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java
*/ <T> boolean replace(@Nonnull Key<T> key, @Nullable T oldValue, @Nullable T newValue); /** * Gets the session data associated with the specified key. * * @param key the key for which to retrieve the session data, must not be {@code null} * @return the session data associated with the key or {@code null} if none */ @Nullable <T> T get(@Nonnull Key<T> key); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Feb 28 23:31:09 GMT 2024 - 4.7K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProvider.java
* * @throws TransportProviderException if passed in remote repository has invalid remote URL or unsupported protocol. */ @Nonnull Transport transport(@Nonnull Session session, @Nonnull RemoteRepository repository);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Mar 23 05:29:39 GMT 2023 - 2.1K bytes - Click Count (0)