Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Leider (0.23 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java

        }
    
        @Nonnull
        default T read(@Nonnull Reader reader) throws XmlReaderException {
            return read(reader, true);
        }
    
        @Nonnull
        default T read(@Nonnull Reader reader, boolean strict) throws XmlReaderException {
            return read(XmlReaderRequest.builder().reader(reader).strict(strict).build());
        }
    
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  2. 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

    Stream, int) throws java.io.IOException; public static void copy(java.io.Reader, java.io.OutputStream) throws java.io.IOException; public static void copy(java.io.Reader, java.io.OutputStream, int) throws java.io.IOException; public static String toString(java.io.Reader) throws java.io.IOException; public static String toString(java.io.Reader, int) throws java.io.IOException; public static byte[] toByteArray(java.io.Reader) throws java.io.IOException; public static byte[] toByteArray(java.io.Reader,...
    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)
  3. maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java

        }
    
        public void addMessage(String message) {
            messages.add(message);
        }
    
        public String toString() {
            return render("");
        }
    
        public String render(String indentation) {
            if (messages.size() == 0) {
                return indentation + "There were no validation errors.";
            }
    
            StringBuilder message = new StringBuilder();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

            ExtensionDescriptor extensionDescriptor = new ExtensionDescriptor();
    
            XmlNode dom;
            try {
                XMLStreamReader reader = WstxInputFactory.newFactory().createXMLStreamReader(is);
                dom = XmlNodeStaxBuilder.build(reader);
            } catch (XMLStreamException e) {
                throw new IOException(e.getMessage(), e);
            }
    
            if (!"extension".equals(dom.getName())) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            // [01] clean:clean
            // [02] modello:xpp3-writer
            // [03] modello:java
            // [04] modello:xpp3-reader
            // [05] modello:xpp3-writer
            // [06] modello:java
            // [07] modello:xpp3-reader
            // [08] plugin:descriptor
            // [09] resources:resources
            // [10] compiler:compile
            // [11] resources:testResources
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelProcessor.java

        Path locateExistingPom(@Nonnull Path project);
    
        /**
         * Reads the model from the specified byte stream. The stream will be automatically closed before the method
         * returns.
         *
         * @param request The reader request to deserialize the model, must not be {@code null}.
         * @return The deserialized model, never {@code null}.
         * @throws IOException If the model could not be deserialized.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            Xpp3Dom httpHeaders = new Xpp3Dom("httpHeaders");
            Xpp3Dom property = new Xpp3Dom("property");
            Xpp3Dom headerName = new Xpp3Dom("name");
            headerName.setValue("header");
            Xpp3Dom headerValue = new Xpp3Dom("value");
            headerValue.setValue("value");
            property.addChild(headerName);
            property.addChild(headerValue);
            httpHeaders.addChild(property);
    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-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                        ""
                    };
    
                    int i = 0;
                    for (String col : cols) {
                        assertEquals(expected[i++], col.trim(), "Wrong column header");
                    }
                } else if (line.startsWith("|")) {
                    String[] cols = line.split("\\|");
    
                    String type = trimApt(cols[1]);
                    String classifier = trimApt(cols[2]);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.pom

                  <goal>xsd</goal>
                </goals>
              </execution>
              <execution>
                <id>standard</id>
                <goals>
                  <goal>java</goal>
                  <goal>xpp3-reader</goal>
                  <goal>xpp3-writer</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

    import org.eclipse.aether.resolution.VersionResolutionException;
    import org.eclipse.aether.resolution.VersionResult;
    import org.eclipse.aether.transfer.ArtifactNotFoundException;
    
    /**
     * Default artifact descriptor reader.
     */
    @Named
    @Singleton
    public class DefaultArtifactDescriptorReader implements ArtifactDescriptorReader {
        private final RemoteRepositoryManager remoteRepositoryManager;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.9K bytes
    - Viewed (0)
Back to top