- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 378 for XML (0.01 sec)
-
dbflute_fess/dfprop/dependencyInjectionMap.dfprop
# o dbfluteDiXmlFileName: (NotRequired - Default 'dbflute.xml') # The file name of DBFlute DI configuration for Lasta Di. # # @LastaDiOnly #; dbfluteDiXmlFileName = dbflute.xml # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o rdbDiXmlResourceName: (NotRequired - Default 'rdb.xml') # The file name of relational database DI configuration for Lasta Di.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceUtilTest.java
/** * @throws Exception */ public void testGetResourcePath() throws Exception { assertEquals("1", "aaa/bbb.xml", ResourceUtil.getResourcePath("aaa/bbb.xml", "xml")); assertEquals("2", "aaa/bbb.xml", ResourceUtil.getResourcePath("aaa.bbb", "xml")); assertEquals("3", "org/codelibs/core/io/ResourceUtilTest.class", ResourceUtil.getResourcePath(getClass())); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
} // Test loadDataStoreNameList with valid XML public void test_loadDataStoreNameList_validXml() throws Exception { // Create test JAR with valid XML final File jarFile = new File(tempDir, "test-datastore.jar"); createTestJarWithXml(jarFile, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<components>\n"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
import org.dbflute.optional.OptionalEntity; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; /** * Parser for Google Search Appliance (GSA) configuration files. * This SAX-based parser reads GSA XML configuration files and converts them into
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
/** * Simply parse the given xml string. * * @param xml the input xml string * @return the parsed object * @throws XmlReaderException if an error occurs during the parsing * @see #toXmlString(Object) */ @Nonnull default T fromXmlString(@Nonnull String xml) throws XmlReaderException { return read(new StringReader(xml)); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.xml; import javax.xml.XMLConstants; import javax.xml.validation.SchemaFactory; import org.codelibs.core.log.Logger; /** * Utility class for {@link SchemaFactory}. * * @author koichik */ public abstract class SchemaFactoryUtil {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/maven-system.properties
maven.installation.toolchains = ${maven.installation.conf}/toolchains.xml maven.user.toolchains = ${maven.user.conf}/toolchains.xml # # Extensions # maven.installation.extensions = ${maven.installation.conf}/extensions.xml maven.project.extensions = ${maven.project.conf}/extensions.xml maven.user.extensions = ${maven.user.conf}/extensions.xml # # Maven central repository URL. #
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 2.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/package-info.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Mar 04 14:17:18 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserUtil.java
*/ package org.codelibs.core.xml; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.io.IOException; import javax.xml.parsers.SAXParser; import org.codelibs.core.exception.IORuntimeException; import org.codelibs.core.exception.SAXRuntimeException; import org.xml.sax.InputSource; import org.xml.sax.SAXException;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/xml/DomUtilTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.xml; import javax.xml.parsers.DocumentBuilder; import junit.framework.TestCase; import org.codelibs.core.io.ResourceUtil; import org.w3c.dom.Document; import org.w3c.dom.Element; /** * @author higa * */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0)