- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 195 for external (0.09 sec)
-
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
* * @param external * If {@code true}, external access is allowed. * @return A new instance of {@link DocumentBuilderFactory}. */ public static DocumentBuilderFactory newInstance(final boolean external) { final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); if (!external) { try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java
* * @param external * If {@code true}, external access is allowed. * @return a {@link SchemaFactory} for W3C XML Schema */ public static SchemaFactory newW3cXmlSchemaFactory(final boolean external) { final SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); if (!external) { disableExternalResources(schemaFactory);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserFactoryUtil.java
try { factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); factory.setFeature("http://xml.org/sax/features/external-general-entities", false); factory.setFeature("http://xml.org/sax/features/external-parameter-entities", false); } catch (SAXNotRecognizedException | SAXNotSupportedException e) { throw new SAXRuntimeException(e);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/CommandExecutionException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when command execution fails. * This exception indicates that an external command or process execution encountered an error. */ public class CommandExecutionException extends FessSystemException { private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
import org.codelibs.fess.util.SystemUtil; import org.kohsuke.args4j.CmdLineException; import org.kohsuke.args4j.CmdLineParser; import org.kohsuke.args4j.Option; import org.lastaflute.di.core.external.GenericExternalContext; import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister; import org.lastaflute.di.core.factory.SingletonLaContainerFactory; import org.opensearch.monitor.jvm.JvmInfo; import org.opensearch.monitor.os.OsProbe;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
import org.codelibs.fess.util.SystemUtil; import org.kohsuke.args4j.CmdLineException; import org.kohsuke.args4j.CmdLineParser; import org.kohsuke.args4j.Option; import org.lastaflute.di.core.external.GenericExternalContext; import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister; import org.lastaflute.di.core.factory.SingletonLaContainerFactory; import org.opensearch.monitor.jvm.JvmInfo; import org.opensearch.monitor.os.OsProbe;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
import org.codelibs.fess.suggest.Suggester; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.di.core.external.GenericExternalContext; import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister; import org.lastaflute.di.core.factory.SingletonLaContainerFactory; public class SuggestCreatorTest extends UnitFessTestCase {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
import org.codelibs.fess.exception.CommandExecutionException; import org.codelibs.fess.opensearch.user.exentity.User; /** * Authentication chain implementation that executes external commands for user operations. * Provides user management through command-line tool execution for password changes and user deletion. */ public class CommandChain implements AuthenticationChain {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.InputStreamThread; import jakarta.annotation.PostConstruct; /** * Command-based thumbnail generator that executes external commands to create thumbnails. * Uses external tools through command execution to generate thumbnail images from documents. */ public class CommandGenerator extends BaseThumbnailGenerator {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
dir = new File(JarFileUtil.toJarFilePath(url)); } return dir; } /** * Converts the resource URL to an external form. * * @param url * The resource URL. Must not be {@literal null}. * @return The external form. */ public static String toExternalForm(final URL url) { assertArgumentNotNull("url", url);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0)