- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 90 for componenten (0.06 sec)
-
docs/nl/docs/index.md
* Hoe stel je **validatie restricties** in zoals `maximum_length` of een `regex`. * Een zeer krachtig en eenvoudig te gebruiken **<abbr title="ook bekend als componenten, middelen, verstrekkers, diensten, injectables">Dependency Injection</abbr>** systeem. * Beveiliging en authenticatie, inclusief ondersteuning voor **OAuth2** met **JWT-tokens** en **HTTP Basic** auth.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.2K 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/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
public void customize(org.lastaflute.di.core.ComponentDef componentDef) { // First mock implementation } }; // Create second customizer ComponentCustomizer customizer2 = new ComponentCustomizer() { @Override public void customize(org.lastaflute.di.core.ComponentDef componentDef) { // Second mock implementation }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K 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) -
src/main/java/jcifs/SmbResourceLocator.java
* * @return The uncanonicalized full URL of this SMB resource. */ String getPath(); /** * Returns the full URL of this SMB resource with '.' and '..' components * factored out. An <code>SmbFile</code> constructed with the result of * this method will result in an <code>SmbFile</code> that is equal to * the original. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
} } @Test @DisplayName("Context components should maintain consistent state") void testComponentStateConsistency() { // When - get components multiple times Configuration config1 = context.getConfig(); Configuration config2 = context.getConfig(); DfsResolver dfs1 = context.getDfs();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
// Test timeout configuration without triggering component dependencies generator.setCommandTimeout(100L); // Very short timeout generator.setCommandDestroyTimeout(50L); // Test that timeout values are set (we can't verify execution without components) assertTrue("Timeout values should be configurable", true); // Test edge cases
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.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)