- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 347 for Parser (0.03 sec)
-
src/test/java/org/codelibs/core/xml/SAXParserFactoryUtilTest.java
SAXParserFactoryUtil.setXIncludeAware(spf, true); spf.setNamespaceAware(true); final SAXParser parser = SAXParserFactoryUtil.newSAXParser(spf); final InputSource is = new InputSource(ResourceUtil.getResourceAsStream("org/codelibs/core/xml/include.xml")); is.setSystemId("include.xml"); parser.parse(is, new DefaultHandler() { @Override
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-toolchain-model/src/main/java/org/apache/maven/toolchain/model/io/xpp3/MavenToolchainsXpp3Reader.java
} /** * Method read. * * @param parser a parser object. * @param strict a strict object. * @return PersistedToolchains * @throws IOException IOException if any. * @throws XmlPullParserException XmlPullParserException if * any. */ public PersistedToolchains read(XmlPullParser parser, boolean strict) throws IOException, XmlPullParserException {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat May 31 10:30:45 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
*/ public SuggestIndexer setAnalyzer(final SuggestAnalyzer analyzer) { this.analyzer = analyzer; return this; } /** * Sets the contents parser. * @param contentsParser The contents parser. * @return This SuggestIndexer instance. */ public SuggestIndexer setContentsParser(final ContentsParser contentsParser) { this.contentsParser = contentsParser;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/MavenEncCling.java
import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.Invoker; import org.apache.maven.api.cli.Parser; import org.apache.maven.api.cli.ParserRequest; import org.apache.maven.cling.invoker.ProtoLookup; import org.apache.maven.cling.invoker.mvnenc.EncryptInvoker; import org.apache.maven.cling.invoker.mvnenc.EncryptParser;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/MavenShellCling.java
import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.Invoker; import org.apache.maven.api.cli.Parser; import org.apache.maven.api.cli.ParserRequest; import org.apache.maven.cling.invoker.ProtoLookup; import org.apache.maven.cling.invoker.mvnsh.ShellInvoker; import org.apache.maven.cling.invoker.mvnsh.ShellParser;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 3K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsParseException.java
*/ private final int lineNumber; /** * The one-based index of the column containing the error. */ private final int columnNumber; /** * Creates a new parser exception with the specified details. * * @param message The error message, may be {@code null}. * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
/** * If true, the parser will be namespace aware. */ protected boolean namespaceAware; /** * If true, the parser will convert CDATA nodes to Text nodes and append them to the adjacent Text node. */ protected boolean coalescing; /** * If true, the parser will expand entity reference nodes. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
compat/maven-toolchain-model/src/site/apt/index.apt
The following are generated from this model: * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package for Merger and v4 Reader and Writers for the Xpp3 XML parser, * A {{{../../api/maven-api-toolchain/toolchains.html}Descriptor Reference}}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 18:16:44 UTC 2025 - 1.6K bytes - Viewed (0) -
compat/maven-settings/src/site/apt/index.apt
The following are generated from this model: * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package for Merger and v4 Reader and Writers for the Xpp3 XML parser, * A {{{../../api/maven-api-settings/settings.html}Descriptor Reference}} * An {{{https://maven.apache.org/xsd/settings-2.0.0.xsd}XSD}}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 18:16:44 UTC 2025 - 2.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PomDiscovery.java
* @param pomPath the path to the POM file * @return the parsed Document * @throws IOException if there's an error reading the file * @throws DomTripException if there's an error parsing the XML */ private static Document loadPom(Path pomPath) throws IOException, DomTripException { String content = Files.readString(pomPath); return new Parser().parse(content); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 4.8K bytes - Viewed (0)