Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for available (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

         * Returns -1 if there is no offset available.
         * @return the current offset
         */
        int getCharacterOffset();
    
        /**
         * Returns the public ID of the XML
         * @return the public ID, or null if not available
         */
        String getPublicId();
    
        /**
         * Returns the system ID of the XML
         * @return the system ID, or null if not available
         */
        String getSystemId();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    <p>November 5, 2013</p>
    <h3>License</h3>
    
    <p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise
    indicated below, the Content is provided to you under the terms and conditions of the
    Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available
    at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Sep 10 19:27:25 GMT 2022
    - 5.5K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/artifact/metadata/TestMetadataSource.java

        }
    
        public List<ArtifactVersion> retrieveAvailableVersionsFromDeploymentRepository(
                Artifact artifact, ArtifactRepository localRepository, ArtifactRepository remoteRepository)
                throws ArtifactMetadataRetrievalException {
            throw new UnsupportedOperationException("Cannot get available versions in this test case");
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            // lines with errors in it, so only display it at debug level.
            String msg = "The POM for {} is invalid, transitive dependencies (if any) will not be available: {}";
            if (logger.isDebugEnabled()) {
                logger.warn(msg, event.getArtifact(), event.getException().getMessage());
            } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataSource.java

    import java.util.List;
    
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * Provides some metadata operations, like querying the remote repository for a list of versions available for an
     * artifact.
     *
     */
    @Deprecated
    public interface MetadataSource {
        String ROLE = MetadataSource.class.getName();
    
        MetadataResolution retrieve(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    iv) states that source code for the Program is available from such Contributor,
    and informs licensees how to obtain it in a reasonable manner on or through
    a medium customarily used for software exchange.
    
       When the Program is made available in source code form:
    
          a) it must be made available under this Agreement; and
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/MirrorSelector.java

        /**
         * Determines the mirror for the specified repository.
         *
         * @param repository The repository to determine the mirror for, must not be {@code null}.
         * @param mirrors The available mirrors, may be {@code null}.
         * @return The mirror specification for the repository or {@code null} if no mirror matched.
         */
        Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

                }
    
                @Override
                public List<ArtifactVersion> retrieveAvailableVersionsFromDeploymentRepository(
                        Artifact artifact, ArtifactRepository localRepository, ArtifactRepository remoteRepository) {
                    throw new UnsupportedOperationException("Cannot get available versions in this test case");
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java

     * registered component descriptors twice: once keyed by role+roleHint and once keyed by role only. This effectively
     * made the metadata source available with its original role hint ("maven") as well as the default hint.
     *
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultMetadataSource extends MavenMetadataSource {
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataSource.java

    import org.apache.maven.repository.legacy.metadata.MetadataResolutionRequest;
    
    /**
     * Provides some metadata operations, like querying the remote repository for a list of versions available for an
     * artifact - deprecated
     */
    @Deprecated
    public interface ArtifactMetadataSource extends org.apache.maven.repository.legacy.metadata.ArtifactMetadataSource {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top