Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 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. 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)
  3. 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)
  4. 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)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.descriptor;
    
    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamReader;
    
    import java.io.BufferedInputStream;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Reader;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import javax.xml.stream.Location;
    import javax.xml.stream.XMLStreamException;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.util.ArrayList;
    import java.util.List;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.interpolation;
    
    import javax.inject.Inject;
    import javax.xml.stream.XMLStreamException;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.StringReader;
    import java.io.StringWriter;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

     * under the License.
     */
    package org.apache.maven.artifact.repository.metadata;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    import javax.xml.stream.XMLStreamException;
    
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.nio.file.Files;
    import java.util.Date;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

            Location loc = mock(Location.class);
            when(loc.getLineNumber()).thenReturn(4);
            when(loc.getColumnNumber()).thenReturn(2);
            XMLStreamException parseException = new XMLStreamException("MESSAGE", loc);
            doThrow(new XmlReaderException("MESSAGE", getLocation(parseException), parseException))
                    .when(toolchainsXmlFactory)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            this.pluginArtifact = pluginArtifact;
        }
    
        public Lifecycle getLifecycleMapping(String lifecycleId) throws IOException, XMLStreamException {
            return getLifecycleMappings().get(lifecycleId);
        }
    
        public Map<String, Lifecycle> getLifecycleMappings() throws IOException, XMLStreamException {
            if (lifecycleMappings == null) {
                LifecycleConfiguration lifecycleConfiguration;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top