- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 501 for external (0.05 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) -
guava/module.json
} }, "variants": [ { "name": "${variant.jvmEnvironmentVariantName}ApiElements", "attributes": { "org.gradle.category": "library", "org.gradle.dependency.bundling": "external", "org.gradle.jvm.version": "8", "org.gradle.jvm.environment": "${variant.jvmEnvironment}", "org.gradle.libraryelements": "jar", "org.gradle.usage": "java-api" },
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 16:59:18 UTC 2025 - 7.5K 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) -
okhttp-idna-mapping-table/src/test/kotlin/okhttp3/internal/idn/MappingTablesTest.kt
mutableListOf( InlineDelta(1, 5), InlineDelta(2, 5), InlineDelta(3, 5), MappedRange.External(4, "a".encodeUtf8()), ), ), ).containsExactly( InlineDelta(1, 5), MappedRange.External(4, "a".encodeUtf8()), ) } @Test fun mergeAdjacentDeltaMappedRangesWithDifferentSizedDeltas() { assertThat(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 6.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) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectionListener.kt
* limitations under the License. */ package okhttp3.internal.connection import okhttp3.Call import okhttp3.Connection import okhttp3.Route import okio.IOException /** * Listener for connection events. Extend this class to monitor the new connections and closes. * * All event methods must execute fast, without external locking, cannot throw exceptions,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 2.2K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
* * Copy WireSharkKeyLoggerListener to your test code to use in development. * * This logs TLSv1.2 on a JVM (OpenJDK 11+) without any additional code. For TLSv1.3 * an existing external tool is required. * * See https://stackoverflow.com/questions/61929216/how-to-log-tlsv1-3-keys-in-jsse-for-wireshark-to-decode-traffic * * Steps to run in your own code *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K 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)