Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for XMLStreamException (0.24 sec)

  1. src/mdo/reader.vm

         * @param attribute a attribute object.
         * @throws XMLStreamException XMLStreamException if
         * any.
         * @return String
         */
        private String getRequiredAttributeValue(String s, String attribute, XMLStreamReader parser, boolean strict)
                throws XMLStreamException {
            if (s == null) {
                if (strict) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeWriter.java

    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamWriter;
    
    import java.io.Writer;
    import java.util.Map;
    
    import org.apache.maven.api.xml.XmlNode;
    import org.codehaus.stax2.util.StreamWriterDelegate;
    
    /**
     *
     */
    public class XmlNodeWriter {
        public static void write(Writer writer, XmlNode dom) throws XMLStreamException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/mdo/reader-stax.vm

         * @param strict a strict object.
         * @throws XMLStreamException XMLStreamException if
         * any.
         * @return ${root.name}
         */
    #if ( $locationTracking )
        public ${root.name} read(XMLStreamReader parser, boolean strict, InputSource source) throws XMLStreamException {
    #else
        public ${root.name} read(XMLStreamReader parser, boolean strict) throws XMLStreamException {
    #end
    #if ( $needXmlContext )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Reader.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.repository.metadata.io.xpp3;
    
    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamReader;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Reader;
    
    import org.apache.maven.artifact.repository.metadata.Metadata;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/mdo/writer-stax.vm

        private interface ElementWriter<T> {
            public void write(T t) throws IOException, XMLStreamException;
        }
    
    #if ( $locationTracking )
        private <T> void writeList(String tagName, List<T> list, XMLStreamWriter serializer, InputLocationTracker locationTracker, ElementWriter<T> writer) throws IOException, XMLStreamException {
            writeList(tagName, false, list, serializer, locationTracker, writer);
    #else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

                    .orElse(null);
        }
    
        private static XmlNode toXmlNode(String xml) throws XMLStreamException, IOException {
            return toXmlNode(xml, null);
        }
    
        private static XmlNode toXmlNode(String xml, XmlNodeStaxBuilder.InputLocationBuilderStax locationBuilder)
                throws XMLStreamException, IOException {
            return toXmlNode(new StringReader(xml), locationBuilder);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsReader.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.io;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    import javax.xml.stream.XMLStreamException;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Reader;
    import java.nio.file.Files;
    import java.util.Map;
    import java.util.Objects;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Writer.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.io.xpp3;
    
    import javax.xml.stream.XMLStreamException;
    
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.Writer;
    
    import org.apache.maven.settings.Settings;
    import org.apache.maven.settings.v4.SettingsStaxWriter;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:44:51 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsWriter.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.toolchain.io;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    import javax.xml.stream.XMLStreamException;
    
    import java.io.IOException;
    import java.io.Writer;
    import java.util.Map;
    import java.util.Objects;
    
    import org.apache.maven.toolchain.model.PersistedToolchains;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.io.xpp3;
    
    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamReader;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Reader;
    
    import org.apache.maven.settings.Settings;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:44:51 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top