Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for wasm (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/rtinfo/internal/DefaultRuntimeInformationTest.java

                    () -> rtInfo.isMavenVersion("[3.0,"),
                    "Bad version range wasn't rejected");
    
            assertThrows(
                    IllegalArgumentException.class, () -> rtInfo.isMavenVersion(""), "Bad version range wasn't rejected");
    
            assertThrows(
                    NullPointerException.class, () -> rtInfo.isMavenVersion(null), "Bad version range wasn't rejected");
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * This map is usually either empty if no module was found, or a singleton map.
         * It may however contain more than one entry if module hierarchy was detected,
         * in which case there is one key per sub-directory.
         *
         * <p>This map may contain null values if the constructor was invoked with {@code resolve}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixResult.java

         */
        String getArtifactId();
    
        /**
         * The repository from which the plugin prefix was resolved.
         *
         * @return The repository from which the plugin prefix was resolved or {@code null} if the prefix was resolved from
         *         the supplied POM.
         */
        ArtifactRepository getRepository();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java

            super("Unknown lifecycle " + lifecycleId);
            this.lifecycleId = (lifecycleId != null) ? lifecycleId : "";
        }
    
        /**
         * Gets the identifier of the lifecycle that was not found.
         *
         * @return The identifier of the lifecycle that was not found, never {@code null}.
         */
        public String getLifecycleId() {
            return lifecycleId;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java

        int SNAPSHOT = 2;
    
        int RELEASE_OR_SNAPSHOT = RELEASE | SNAPSHOT;
    
        /**
         * Get the repository the metadata was located in.
         *
         * @return the repository
         */
        ArtifactRepository getRepository();
    
        /**
         * Set the repository the metadata was located in.
         *
         * @param remoteRepository the repository
         */
        void setRepository(ArtifactRepository remoteRepository);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java

            //        if ( messages.size() == 1 )
            //        {
            //            message.append( "There was 1 validation error: " );
            //        }
            //        else
            //        {
            //            message.append( "There was " + messages.size() + " validation errors: " + LS );
            //        }
            //
            for (int i = 0; i < messages.size(); i++) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         * @return The results of the project builder where each result corresponds to one project that was built, never
         *         {@code null}.
         * @throws ProjectBuildingException If an error was encountered during building of any project.
         *             {@link ProjectBuildingException#getResults()} provides access to the details of the problems.
         */
    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)
  9. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

     *
     */
    @Deprecated
    public class ArtifactTransferEvent extends EventObject {
        /**
         * A transfer was attempted, but has not yet commenced.
         */
        public static final int TRANSFER_INITIATED = 0;
    
        /**
         * A transfer was started.
         */
        public static final int TRANSFER_STARTED = 1;
    
        /**
         * A transfer is completed.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/UrlNormalizer.java

    public interface UrlNormalizer {
    
        /**
         * Normalizes the specified URL.
         *
         * @param url The URL to normalize, may be {@code null}.
         * @return The normalized URL or {@code null} if the input was {@code null}.
         */
        String normalize(String url);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.1K bytes
    - Viewed (0)
Back to top