Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 336 for Gagnon (0.19 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonManager.java

    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.wagon.ResourceDoesNotExistException;
    import org.apache.maven.wagon.TransferFailedException;
    import org.apache.maven.wagon.UnsupportedProtocolException;
    import org.apache.maven.wagon.Wagon;
    import org.apache.maven.wagon.events.TransferListener;
    import org.apache.maven.wagon.repository.Repository;
    
    /**
     * WagonManager
     */
    @Deprecated
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/org/apache/maven/artifact/manager/DefaultWagonManagerTest.xml

          <role>org.apache.maven.wagon.Wagon</role>
          <role-hint>b2</role-hint>
          <implementation>org.apache.maven.artifact.manager.WagonB</implementation>
        </component>
        <component>
          <role>org.apache.maven.wagon.Wagon</role>
          <role-hint>c</role-hint>
          <implementation>org.apache.maven.artifact.manager.WagonC</implementation>
        </component>
        <component>
          <role>org.apache.maven.wagon.Wagon</role>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Apr 26 16:34:19 GMT 2009
    - 1.7K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/TransferListenerAdapter.java

    import org.apache.maven.repository.ArtifactTransferListener;
    import org.apache.maven.repository.ArtifactTransferResource;
    import org.apache.maven.wagon.events.TransferEvent;
    import org.apache.maven.wagon.events.TransferListener;
    import org.apache.maven.wagon.repository.Repository;
    import org.apache.maven.wagon.resource.Resource;
    
    /**
     * TransferListenerAdapter
     */
    @Deprecated
    public class TransferListenerAdapter implements TransferListener {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    ChecksumFailedExcept; private void verifyChecksum(org.apache.maven.wagon.observers.ChecksumObserver, java.io.File, java.io.File, String, String, org.apache.maven.wagon.Wagon) throws org.apache.maven.wagon.ResourceDoesNotExist, org.apache.maven.wagon.TransferFailedExcept, org.apache.maven.wagon.authorization.AuthorizationExcepti; private void disconnectWagon(org.apache.maven.wagon.Wagon); private void releaseWagon(String, org.apache.maven.wagon.Wagon); public org.apache.maven.wagon.proxy.ProxyInfo getProxy(String);...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.wagon.ConnectionException;
    import org.apache.maven.wagon.ResourceDoesNotExistException;
    import org.apache.maven.wagon.TransferFailedException;
    import org.apache.maven.wagon.UnsupportedProtocolException;
    import org.apache.maven.wagon.Wagon;
    import org.apache.maven.wagon.authentication.AuthenticationException;
    import org.apache.maven.wagon.authentication.AuthenticationInfo;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

    ** Control over downloads
    
      Find the control point for m2 using maven-wagon. At this point, inject
      a offline status parameter which is used when retrieving the specific Wagon.
    
      If <<<offline == true>>>:
    
      * If the wagon is not bound to "file://", then ignore the request and print
        a debug message.
    
      * If the wagon is bound to "file://" then:
    
        Retrieve the file or base-url file to be "downloaded".
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  7. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    http://www.ibiblio.org/maven2 junit junit 3.8.1 test target/site org.codehaus.plexus plexus-container-default 1.0-alpha-8 org.codehaus.plexus plexus-utils 1.0.4 org.apache.maven.wagon wagon-provider-api 1.0-alpha-5 org.apache.maven.wagon wagon-ssh 1.0-alpha-5 org.apache.maven.wagon wagon-file 1.0-alpha-5 org.apache.maven.wagon wagon-http-lightweight 1.0-alpha-5 repo1 Maven Central Repository scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 snapshots Maven Central Development...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 9.9K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonMock.java

     * under the License.
     */
    package org.apache.maven.repository.legacy;
    
    import org.apache.maven.wagon.providers.file.FileWagon;
    
    /**
     * Mock of a Wagon for testing
     *
     */
    public class WagonMock extends FileWagon {
    
        /**
         * A field that can be configured in the Wagon
         *
         * @component.configuration default="configurableField"
         */
        private String configurableField = null;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java

    import java.io.InputStream;
    
    import org.apache.maven.wagon.ResourceDoesNotExistException;
    import org.apache.maven.wagon.TransferFailedException;
    import org.apache.maven.wagon.authorization.AuthorizationException;
    import org.apache.maven.wagon.events.TransferListener;
    import org.apache.maven.wagon.providers.file.FileWagon;
    import org.apache.maven.wagon.resource.Resource;
    
    /**
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

            super("While configuring wagon for '" + repositoryId + "': " + message, cause);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super("While configuring wagon for '" + repositoryId + "': " + message);
    
            this.repositoryId = repositoryId;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
Back to top