Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for join (0.12 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Graph.java

            }
    
            public List<String> getCycle() {
                return cycle;
            }
    
            @Override
            public String getMessage() {
                return super.getMessage() + " " + String.join(" --> ", cycle);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties>
        <prop0>test</prop0>
      </properties>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>https://maven.apache.org/null</url>
          <snapshots>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

            }
        }
    
        private Properties convertToProperties(final BuildResumptionData buildResumptionData) {
            Properties properties = new Properties();
    
            String value = String.join(PROPERTY_DELIMITER, buildResumptionData.getRemainingProjects());
            properties.setProperty(REMAINING_PROJECTS, value);
    
            return properties;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/internal/DefaultLegacySupportTest.java

            thread.start();
    
            MavenSession m2 = new MavenSession(null, null, mavenExecutionRequest, null);
            defaultLegacySupport.setSession(m2);
            latch.countDown();
            thread.join();
            assertNull(myRunnable.getSession());
        }
    
        class MyRunnable implements Runnable {
    
            private volatile MavenSession session;
    
            public void run() {
                try {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

                    buffer.append(" (");
                    join(buffer, details, "; ");
                    buffer.append(")");
                }
            } else {
                buffer.append("(");
                buffer.append(nodeString);
                if (!details.isEmpty()) {
                    buffer.append(" - ");
                    join(buffer, details, "; ");
                }
                buffer.append(")");
            }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

                    buffer.append(" (");
                    join(buffer, details, "; ");
                    buffer.append(")");
                }
            } else {
                buffer.append("(");
                buffer.append(nodeString);
                if (!details.isEmpty()) {
                    buffer.append(" - ");
                    join(buffer, details, "; ");
                }
                buffer.append(")");
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

                                            + ":" + goal)))));
            return goals.entrySet().stream()
                    .collect(Collectors.toMap(Map.Entry::getKey, e -> new LifecyclePhase(String.join(",", e.getValue()))));
        }
    
        public Map<String, LifecyclePhase> getDefaultLifecyclePhases() {
            return defaultPhases;
        }
    
        @Deprecated
        public Map<String, String> getDefaultPhases() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  8. README.md

    Contributing
    ------------
    
    If you are interested in the development of Maven, please consult the
    documentation first and afterward you are welcome to join the developers
    mailing list to ask questions or discuss new ideas/features/bugs etc.
    
    Take a look into the [contribution guidelines](CONTRIBUTING.md).
    
    License
    -------
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml

      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties/>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>file:///${basedir}/null</url>
          <snapshots/>
          <releases/>
        </repository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/CycleDetectedException.java

            this.cycle = cycle;
        }
    
        public List<String> getCycle() {
            return cycle;
        }
    
        @Override
        public String getMessage() {
            return super.getMessage() + " " + String.join(" --> ", cycle);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 1.3K bytes
    - Viewed (0)
Back to top