Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for connected (0.37 sec)

  1. apache-maven/pom.xml

          <version>${slf4jVersion}</version>
          <scope>runtime</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-connector-basic</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-file</artifactId>
        </dependency>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                wagon.connect(
                        new Repository(repository.getId(), repository.getUrl()),
                        authenticationInfo(repository),
                        proxyInfo(repository));
    
            } else if (repository.getAuthentication() != null) {
                wagon.connect(new Repository(repository.getId(), repository.getUrl()), authenticationInfo(repository));
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    removeEdge(Vertex, Vertex); public Vertex getVertex(String); public boolean hasEdge(String, String); public java.util.List getChildLabels(String); public java.util.List getParentLabels(String); public Object clone() throws CloneNotSupportedExc; public boolean isConnected(String); public java.util.List getSuccessorLabels(String); } org/codehaus/plexus/util/dag/TopologicalSorter.class package org.codehaus.plexus.util.dag; public synchronized class TopologicalSorter { private static final Integer NOT_VISTITED; private...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Optional;
    
    import org.apache.maven.api.services.Transport;
    import org.eclipse.aether.spi.connector.transport.GetTask;
    import org.eclipse.aether.spi.connector.transport.PutTask;
    import org.eclipse.aether.spi.connector.transport.Transporter;
    
    import static java.util.Objects.requireNonNull;
    
    public class DefaultTransport implements Transport {
        private final URI baseURI;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnectorFactory.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.spi.connector.RepositoryConnector;
    import org.eclipse.aether.spi.connector.RepositoryConnectorFactory;
    import org.eclipse.aether.transfer.NoRepositoryConnectorException;
    
    /**
     */
    @Named("test")
    @Singleton
    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)
  6. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

    /**
     * Describes the interdependencies between projects in the reactor.
     *
     * @since 3.0-alpha
     */
    public interface ProjectDependencyGraph {
    
        /**
         * Gets all collected projects.
         *
         * @return All collected projects.
         *
         * @since 3.5.0
         */
        List<MavenProject> getAllProjects();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

        public Map<String, String> getSystemProperties() {
            return systemProperties;
        }
    
        /**
         * Sets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @param systemProperties The system properties, may be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

        void flush();
    
        /**
         * Registers the specified cache record for usage with the given project. Integrators can use the information
         * collected from this method in combination with a custom cache implementation to dispose unused records from the
         * cache.
         *
         * @param project The project that employs the plugin realm, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

        void flush();
    
        /**
         * Registers the specified cache record for usage with the given project. Integrators can use the information
         * collected from this method in combination with a custom cache implementation to dispose unused records from the
         * cache.
         *
         * @param project The project that employs the plugin realm, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmServiceTest.java

    import java.util.Collection;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.apache.maven.api.services.ChecksumAlgorithmService;
    import org.eclipse.aether.internal.impl.checksum.*;
    import org.eclipse.aether.spi.connector.checksum.ChecksumAlgorithmFactory;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.*;
    
    public class DefaultChecksumAlgorithmServiceTest {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 4.2K bytes
    - Viewed (0)
Back to top