- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 105 for composants (0.06 sec)
-
docs/fr/docs/index.md
* L'utilisation de **contraintes de validation** comme `maximum_length` ou `regex`. * Un **<abbr title="aussi connu sous le nom de composants, ressources, fournisseurs, services, injectables">système d'injection de dépendance </abbr>** très puissant et facile à utiliser .
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 22K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
private AndPredicate(List<? extends Predicate<? super T>> components) { this.components = components; } @Override public boolean apply(@ParametricNullness T t) { // Avoid using the Iterator to avoid generating garbage (issue 820). for (int i = 0; i < components.size(); i++) { if (!components.get(i).apply(t)) { return false;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* * @param names the path components to append to the classes directory * @return the Path object pointing to the classes directory */ public static Path getClassesPath(final String... names) { return getPath("WEB-INF/", "classes", names); } /** * Gets the path to original files directory. * * @param names the path components to append to the orig directory
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
options.propertiesPath = tempPropFile.getAbsolutePath(); options.numOfThreads = 1; options.cleanup = false; // Setup mock components setupMockComponents(); Method processMethod = ThumbnailGenerator.class.getDeclaredMethod("process", ThumbnailGenerator.Options.class); processMethod.setAccessible(true); try {
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/jcifs/internal/smb2/persistent/HandleGuid.java
} // MS-SMB2 specifies little-endian byte ordering for GUID components // Convert from little-endian wire format to Java UUID ByteBuffer bb = ByteBuffer.wrap(bytes).order(java.nio.ByteOrder.LITTLE_ENDIAN); // Read GUID components in little-endian order int data1 = bb.getInt(); // first 4 bytes (little-endian)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.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/job/PingSearchEngineJobTest.java
pingSearchEngineJob = new PingSearchEngineJob(); } // Test normal operation with GREEN status and state change public void test_execute_greenStatusNoChange() { // Setup mock components SearchEngineClient searchEngineClient = new SearchEngineClient() { @Override public PingResponse ping() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/resources/fess_job.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="scriptJobExecutor" class="org.codelibs.fess.job.impl.ScriptExecutor" instance="prototype"> </component> <!-- Jobs --> <component name="crawlJob" class="org.codelibs.fess.job.CrawlJob" 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/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
return 14; } @Override public int getPurgeUserInfoDay() { return 7; } }; // Register components ComponentUtil.register(crawlingInfoService, CrawlingInfoService.class.getCanonicalName()); ComponentUtil.register(searchLogService, SearchLogService.class.getCanonicalName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.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)