- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 178 for component1 (0.04 sec)
-
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
String retrieved2 = ComponentUtil.getComponent(componentName); assertSame(second, retrieved2); } public void test_multiple_components() { String comp1 = "component1"; String comp2 = "component2"; Integer comp3 = 123; ComponentUtil.register(comp1, "name1"); ComponentUtil.register(comp2, "name2"); ComponentUtil.register(comp3, "name3");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 7.3K bytes - Viewed (0) -
apache-maven/src/assembly/component.xml
specific language governing permissions and limitations under the License. --> <component xmlns="http://maven.apache.org/ASSEMBLY-COMPONENT/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY-COMPONENT/2.1.0 http://maven.apache.org/xsd/assembly-component-2.1.0.xsd"> <dependencySets> <dependencySet> <useProjectArtifact>false</useProjectArtifact>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 3.6K bytes - Viewed (0) -
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/test/resources/test_app.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml" /> <include path="lastaflute.xml" /> <!-- Register systemProperties for test environment --> <component name="systemProperties" class="org.codelibs.fess.unit.TestSystemProperties" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 390 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/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) -
compat/maven-compat/src/main/java/org/apache/maven/internal/compat/interactivity/LegacyPlexusInteractivity.java
import org.codehaus.plexus.components.interactivity.InputHandler; import org.codehaus.plexus.components.interactivity.OutputHandler; import org.codehaus.plexus.components.interactivity.Prompter; import org.codehaus.plexus.components.interactivity.PrompterException; import org.eclipse.sisu.Priority; /** * This class is injected into any legacy component that would want to use legacy "Plexus Interactivity API".
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:48:41 UTC 2025 - 5.2K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/package-info.java
* the Maven dependency injection system. The main component is the {@link org.apache.maven.di.tool.DiIndexProcessor}, * which processes classes annotated with {@link org.apache.maven.api.di.Named} and creates an index file * that allows for efficient discovery of injectable components at runtime. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 1.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)