Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for serve (0.17 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java

     *
     */
    @Deprecated
    public interface ClasspathTransformation {
        String ROLE = ClasspathTransformation.class.getName();
    
        /**
         * Transform Graph into a Collection of metadata objects that
         * could serve as a classpath for a particular scope
         *
         * @param dirtyGraph - dependency graph
         * @param scope - which classpath to extract
         * @param resolve - whether to resolve artifacts.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    to time. No one other than the Agreement Steward has the right to modify this
    Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse
    Foundation may assign the responsibility to serve as the Agreement Steward
    to a suitable separate entity. Each new version of the Agreement will be given
    a distinguishing version number. The Program (including Contributions) may
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/maven/conf/settings.xml

      </proxies>
    
      <!-- servers
       | This is a list of authentication profiles, keyed by the server-id used within the system.
       | Authentication profiles can be used whenever maven must make a connection to a remote server.
       |-->
      <servers>
        <!-- server
         | Specifies the authentication information to use when connecting to a particular server, identified by
         | a unique name within the system (referred to by the 'id' attribute below).
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                }
                List<Server> servers = settings.getServers();
                for (int i = 0; i < servers.size(); i++) {
                    Server server = servers.get(i);
                    String serverField = "servers.server[" + i + "]";
                    validateStringEmpty(problems, serverField + ".username", server.getUsername(), msgS);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

                    List<Server> servers = request.getServers();
    
                    if (servers != null) {
                        for (Server server : servers) {
                            if (id.equalsIgnoreCase(server.getId())) {
                                SettingsDecryptionResult result =
                                        settingsDecrypter.decrypt(new DefaultSettingsDecryptionRequest(server));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

                    .get(ConfigurationProperties.CONNECT_TIMEOUT + "." + server.getId());
            assertEquals(3000, connectionTimeout);
        }
    
        @Test
        void connectionTimeoutFromHttpConfigurationTest() throws InvalidRepositoryException {
            Server server = new Server();
            server.setId("repository");
            server.setUsername("jason");
            server.setPassword("abc123");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        /**
         * Injects the authentication information into the specified repositories. For each repository that is matched by a
         * server, its credentials will be updated to match the values from the server specification. Repositories without a
         * matching server will have their credentials cleared. Note: This method must be called after
    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)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

            this.forceUpdate = forceUpdate;
    
            return this;
        }
    
        public ArtifactResolutionRequest setServers(List<Server> servers) {
            this.servers = servers;
    
            return this;
        }
    
        public List<Server> getServers() {
            if (servers == null) {
                servers = new ArrayList<>();
            }
    
            return servers;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml

        <version>7</version>
          <relativePath>jetty-parent.xml</relativePath>
      </parent>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>project</artifactId>
      <packaging>pom</packaging>
      <name>Jetty Server Project</name>
      <version>6.1.12</version>
      <build>
        <defaultGoal>install</defaultGoal>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.3K bytes
    - Viewed (0)
Back to top