- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 133 for Component (0.07 sec)
-
src/main/resources/fess_job.xml
</component> <component name="aggregateLogJob" class="org.codelibs.fess.job.AggregateLogJob" instance="prototype"> </component> <component name="purgeDocJob" class="org.codelibs.fess.job.PurgeDocJob" instance="prototype"> </component> <component name="purgeLogJob" class="org.codelibs.fess.job.PurgeLogJob" instance="prototype"> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 22:21:45 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
/** * Validate individual path components */ private void validateComponents(String path) throws SmbException { String[] components = path.split("[\\\\/]"); for (String component : components) { if (component.isEmpty()) { continue; // Skip empty components (from double slashes) } // Check component length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} /** * Gets the protocol helper component. * @return The protocol helper. */ public static ProtocolHelper getProtocolHelper() { return getComponent(PROTOCOL_HELPER); } /** * Gets a component by its class type. * @param <T> The type of the component. * @param clazz The class of the component to retrieve. * @return The component instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class ContainerNotAvailableExceptionTest extends UnitFessTestCase { public void test_constructor_withComponentName() { // Test constructor with component name only String componentName = "testComponent"; ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<components>\n" + " <component class=\"org.codelibs.fess.ds.impl.CsvDataStore\"/>\n" + " <component class=\"org.codelibs.fess.ds.impl.DatabaseDataStore\"/>\n" + " <component class=\"org.codelibs.fess.ds.impl.FileListDataStore\"/>\n" + "</components>"); DataStoreFactory testFactory = new DataStoreFactory() {
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/exception/ContainerNotAvailableException.java
* Constructor with component name. * @param componentName The name of the component that is not available. */ public ContainerNotAvailableException(final String componentName) { super(componentName + " is not available."); } /** * Constructor with component name and cause. * @param componentName The name of the component that is not available. * @param cause The cause of the exception. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
package jcifs; import java.net.URL; /** * Location information for a SMB resource * * @author mbechler * */ public interface SmbResourceLocator { /** * Returns the last component of the target URL. This will * effectively be the name of the file or directory represented by this * <code>SmbFile</code> or in the case of URLs that only specify a server
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
docs/en/docs/deployment/concepts.md
* Caddy * Automatically handles certificates renewals ✨ * Nginx * With an external component like Certbot for certificate renewals * HAProxy * With an external component like Certbot for certificate renewals * Kubernetes with an Ingress Controller like Nginx * With an external component like cert-manager for certificate renewals * Handled internally by a cloud provider as part of their services (read below 👇)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
} // Check individual components String[] components = path.split("[/\\\\]"); for (String component : components) { if (component.length() > MAX_PATH_COMPONENT_SIZE) { failedValidations.incrementAndGet(); log.warn("Path component exceeds maximum length: {}", component.length()); throw new SmbException("Path component too long");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
assertNotNull(nonPagerComponentName); assertEquals("testService", nonPagerComponentName); } // Test class name creation from component name public void test_fromComponentNameToClassName() { // Test with valid component name - using custom method MockNamingConvention mockNaming = (MockNamingConvention) namingConvention;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0)