Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 885 for string (0.1 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    org.codehaus.plexus.util.xml.Xpp3Dom dom; public void XmlPlexusConfigurati(String); public void XmlPlexusConfigurati(org.codehaus.plexus.util.xml.Xpp3Dom); public org.codehaus.plexus.util.xml.Xpp3Dom getXpp3Dom(); public String getName(); public String getValue(); public String getValue(String); public void setValue(String); public void setAttribute(String, String); public String getAttribute(String, String); public String getAttribute(String); public String[] getAttributeNames(); public org.codehaus.plexus.config...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                        level,
                        Arrays.toString(ValidationReportLevel.values()));
                return DEFAULT_VALIDATION_LEVEL;
            }
        }
    
        private String pluginKey(String groupId, String artifactId, String version) {
            return groupId + ":" + artifactId + ":" + version;
        }
    
        private String pluginKey(MojoDescriptor mojoDescriptor) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            CycleDetectedException(String message, List<String> cycle) {
                super(message);
                this.cycle = cycle;
            }
    
            public List<String> getCycle() {
                return cycle;
            }
    
            @Override
            public String getMessage() {
                return super.getMessage() + " " + String.join(" --> ", cycle);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

     */
    public class PluginManagerException extends Exception {
    
        private final String pluginGroupId;
    
        private final String pluginArtifactId;
    
        private final String pluginVersion;
    
        private String goal;
    
        private MavenProject project;
    
        protected PluginManagerException(Plugin plugin, String message, MavenProject project, Throwable cause) {
            super(message, cause);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

            return file;
        }
    
        public String getFileContents(File file, String encoding) throws IOException {
            return FileUtils.fileRead(file, encoding);
        }
    
        protected void finalize() throws Throwable {
            maybeWarnAboutCleanUp();
    
            super.finalize();
        }
    
        public File createFile(String filename, String content, String encoding) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolutionExceptionTest.java

        private static final String LS = System.lineSeparator();
    
        @Test
        void testMissingArtifactMessageFormat() {
            String message = "Missing artifact";
            String indentation = "  ";
            String groupId = "aGroupId";
            String artifactId = "anArtifactId";
            String version = "aVersion";
            String type = "jar";
            String classifier = "aClassifier";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/InvalidRepositoryException.java

     *
     */
    public class InvalidRepositoryException extends Exception {
        private final String repositoryId;
    
        public InvalidRepositoryException(String message, String repositoryId, MalformedURLException cause) {
            super(message, cause);
            this.repositoryId = repositoryId;
        }
    
        protected InvalidRepositoryException(String message, String repositoryId, ComponentLookupException cause) {
            super(message, cause);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

        public List<Toolchain> getToolchains(MavenSession session, String type, Map<String, String> requirements) {
            List<ToolchainModel> models = session.getRequest().getToolchains().get(type);
    
            return selectToolchains(models, type, requirements);
        }
    
        private List<Toolchain> selectToolchains(
                List<ToolchainModel> models, String type, Map<String, String> requirements) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

        }
    
        public String identify() {
            StringBuilder sb = new StringBuilder(256);
    
            sb.append(executionId);
            sb.append(configuration.toString());
    
            return sb.toString();
        }
    
        public String getLifecyclePhase() {
            return lifecyclePhase;
        }
    
        public void setLifecyclePhase(String lifecyclePhase) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         * 1.0.0.X1 &lt; 1.0.0-X2 for any string X
         */
        @Test
        void testMng7644() {
            for (String x : new String[] {"abc", "alpha", "a", "beta", "b", "def", "milestone", "m", "RC"}) {
                // 1.0.0.X1 < 1.0.0-X2 for any string x
                checkVersionsOrder("1.0.0." + x + "1", "1.0.0-" + x + "2");
                // 2.0.X == 2-X == 2.0.0.X for any string x
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top