Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 929 for nonNull (0.13 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsXmlFactory.java

    @Named
    @Singleton
    public class DefaultSettingsXmlFactory implements SettingsXmlFactory {
        @Override
        public Settings read(@Nonnull XmlReaderRequest request) throws XmlReaderException {
            nonNull(request, "request");
            Reader reader = request.getReader();
            InputStream inputStream = request.getInputStream();
            if (reader == null && inputStream == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactCoordinateFactory.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.ArtifactCoordinateFactory;
    import org.apache.maven.api.services.ArtifactCoordinateFactoryRequest;
    import org.eclipse.aether.artifact.ArtifactType;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/catalog/problems/DefaultCatalogProblemBuilder.java

            return formatter.toString();
        }
    
        @Nonnull
        public static String getProblemInVersionCatalog(VersionCatalogBuilder builder) {
            return getProblemInVersionCatalog(builder.getName());
        }
    
        @Nonnull
        public static String getProblemInVersionCatalog(String name) {
            return "Problem: " + getInVersionCatalog(name);
        }
    
        @Nonnull
        public static String getInVersionCatalog(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         */
        @Nonnull
        String[] option(Iterable<? extends Path> paths);
    
        /**
         * Returns the name of this path type. For example, if this path type
         * is {@link JavaPathType#MODULES}, then this method returns {@code "MODULES"}.
         *
         * @return the programmatic name of this path type
         */
        @Nonnull
        String name();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

         *
         * @return the (case-sensitive) identifier, never {@code null}
         */
        @Nonnull
        String getId();
    
        /**
         * Gets the type of the repository, for example "default".
         *
         * @return the (case-sensitive) type of the repository, never {@code null}
         */
        @Nonnull
        String getType();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.eclipse.aether.graph.DependencyNode;
    import org.eclipse.aether.util.graph.manager.DependencyManagerUtils;
    import org.eclipse.aether.util.graph.transformer.ConflictResolver;
    
    public class DefaultNode extends AbstractNode {
    
        protected final @Nonnull InternalSession session;
        protected final @Nonnull org.eclipse.aether.graph.DependencyNode node;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ClassToInstanceMap.java

        extends Map<Class<? extends @NonNull B>, B> {
      /**
       * Returns the value the specified class is mapped to, or {@code null} if no entry for this class
       * is present. This will only return a value that was bound to this specific class, not a value
       * that may have been bound to a subtype.
       */
      @CheckForNull
      <T extends @NonNull B> T getInstance(Class<T> type);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionLocator.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.msvcpp.version;
    
    import javax.annotation.Nonnull;
    import java.util.List;
    
    public interface VisualStudioVersionLocator {
        @Nonnull
        List<VisualStudioInstallCandidate> getVisualStudioInstalls();
    
        String getSource();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 896 bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/MinimalCollection.java

          Class<? super @NonNull E> type, E... contents) {
        return new MinimalCollection<>(type, true, contents);
      }
    
      private final E[] contents;
      private final Class<? super @NonNull E> type;
      private final boolean allowNulls;
    
      // Package-private so that it can be extended.
      MinimalCollection(Class<? super @NonNull E> type, boolean allowNulls, E... contents) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top