Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for join (0.15 sec)

  1. 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)
  2. 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 Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    fullMessage = join(fullMessage, "Unknown host " + exceptionMessage);
                } else if (!fullMessage.contains(exceptionMessage)) {
                    fullMessage = join(fullMessage, exceptionMessage);
                }
            }
    
            return fullMessage.trim();
        }
    
        private String join(String message1, String message2) {
            String message = "";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  4. 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)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            }
    
            public List<String> getCycle() {
                return cycle;
            }
    
            @Override
            public String getMessage() {
                return super.getMessage() + " " + String.join(" --> ", cycle);
            }
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  6. 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 Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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 Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

                @Override
                public void run() {
                    artifactsResultInAnotherThread.set(project.getArtifacts().size());
                }
            });
            t.start();
            t.join();
            assertEquals(project.getArtifacts().size(), artifactsResultInAnotherThread.get());
        }
    
        @Test
        void testDontResolveDependencies() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    String mid(String, int, int); public static String[] split(String); public static String[] split(String, String); public static String[] split(String, String, int); public static String concatenate(Object[]); public static String join(Object[], String); public static String join(java.util.Iterator, String); public static String replaceOnce(String, char, char); public static String replace(String, char, char); public static String replace(String, char, char, int); public static String replaceOnce(String,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
Back to top