Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for Hevery (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * Returns the project artifacts as immutable list. Elements are the project POM artifact and the artifact
         * produced by this project build, if applicable. Hence, the returned list may have one or two elements
         * (never less than 1, never more than 2), depending on project packaging.
         * <p>
         * The list's first element is ALWAYS the project POM artifact. Presence of second element in the list depends
         * solely on the project packaging.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    With evalSubstringOf(String) - Method in class org.hamcrest.core.StringStartsWith evalSubstringOf(String) - Method in class org.hamcrest.core.SubstringMatcher Every<T> - Class in org.hamcrest.core Every(Matcher<? super T>) - Constructor for class org.hamcrest.core.Every everyItem(Matcher<U>) - Static method in class org.hamcrest.core.Every Creates a matcher for Iterables that only matches when a single pass over the examined Iterable yields items that are all matched by the specified itemMatcher....
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

         * @return This request, never {@code null}.
         */
        MetadataResolutionRequest setLocalRepository(ArtifactRepository localRepository);
    
        /**
         * Gets the remote repositories to use for the resolution.
         *
         * @return The remote repositories to use for the resolution, never {@code null}.
         */
        List<ArtifactRepository> getRemoteRepositories();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

         *
         * @return The transitive dependencies, never {@code null}.
         */
        List<Dependency> getDependencies();
    
        /**
         * Gets the dependencies that were successfully resolved.
         *
         * @return The resolved dependencies, never {@code null}.
         */
        List<Dependency> getResolvedDependencies();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         * @param request The project building request that holds further parameters, must not be {@code null}.
         * @return The result of the project building, never {@code null}.
         * @throws ProjectBuildingException If the project descriptor could not be successfully built.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         * @return the result of the settings building, never {@code null}
         * @throws SettingsBuilderException if the effective settings could not be built
         */
        @Nonnull
        SettingsBuilderResult build(@Nonnull SettingsBuilderRequest request);
    
        /**
         * Builds the effective settings of the specified settings sources.
         *
         * @return the result of the settings building, never {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         * @return a {@code Source} pointing to the located pom or an empty {@code Optional} if none was found by this parser
         */
        @Nonnull
        Optional<Source> locate(@Nonnull Path dir);
    
        /**
         * Parse the model obtained previously by a previous call to {@link #locate(Path)}.
         *
         * @param source the source to parse, never {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionRequest.java

        /**
         * Sets the project to resolve dependencies for.
         *
         * @param project The project to resolve dependencies for, may be {@code null}.
         * @return This request for chaining, never {@code null}.
         */
        DependencyResolutionRequest setMavenProject(MavenProject project);
    
        /**
         * Gets the filter used to exclude some dependencies from resolution.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

        /**
         * Creates a user-friendly source hint for the specified model.
         *
         * @param model The model to create a source hint for, may be {@code null}.
         * @return The user-friendly source hint, never {@code null}.
         */
        static String toSourceHint(Model model) {
            if (model == null) {
                return "";
            }
            StringBuilder buffer = new StringBuilder(128);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

        private final Map<Path, Model> modelsByPath = new ConcurrentHashMap<>();
    
        /**
         * Get the model by its GAV or (since 4.0.0) by its GA if there is only one.
         *
         * @param groupId never {@code null}
         * @param artifactId never {@code null}
         * @param version can be {@code null}
         * @return the matching model or {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top