- Sort Score
- Num 10 results
- Language All
Results 411 - 420 of 495 for daga (0.02 seconds)
-
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} return false; } /** * Processes thumbnail generation with a response data consumer. * @param id The document ID. * @param consumer The consumer function to process response data. * @return True if processing was successful, false otherwise. */ protected boolean process(final String id, final Predicate<ResponseData> consumer) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
} ) } """ ) } } } internal data class CheckResult( val checkFailure: UnexpectedBuildFailure?, val richReport: RichReport, val buildResult: BuildResult ) { val isBinaryCompatible = checkFailure == nullCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 18.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java
chatApiManager.sendSseEvent(writer, "test", Map.of("key", "value")); final String output = stringWriter.toString(); assertTrue(output.contains("event: test")); assertTrue(output.contains("data:")); assertTrue(output.contains("\"key\":\"value\"")); } @Test public void test_sendSseEvent_session() { final StringWriter stringWriter = new StringWriter();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 14 01:39:16 GMT 2026 - 35K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
logger.warn("Failed to create thumbnail for {}", entity, e); } } /** * Offers a document for thumbnail generation. * * @param docMap the document data map * @return true if the task was successfully added to the queue */ public boolean offer(final Map<String, Object> docMap) { for (final ThumbnailGenerator generator : generatorList) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 27.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java
final boolean result = testClient.reindexConfigIndices(true, allTargetPrefixes()); assertTrue(result); // During rebuild, addMapping is always called with loadBulkData=false // because bulk data is loaded separately with createOnly=true via insertBulkData. for (final String[] call : testClient.addMappingCalls) { assertNotNull(call); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 28.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
* and related query fields. */ public RelatedQueryPager() { // Default constructor - fields will be initialized to default values } /** * Clears all pager data and resets to default values. * Resets pagination state and clears all related query fields. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
/** Version number of the configuration */ public String versionNo; /** Description of the configuration */ public String description; /** * Clears all pagination and configuration data, resetting to default values. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
* Search criteria: creation time. */ public String createdTime; /** * Search criteria: version number. */ public String versionNo; /** * Clears all pager data and search criteria. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false; pageSize = getDefaultPageSize();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger()); }).createPageNumberList()); return webConfigList; } /** * Deletes a web configuration and all its related data. * This includes removing associated web authentications and request headers. * * @param webConfig The web configuration to delete */ public void delete(final WebConfig webConfig) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
// Test: RDF MIME type should match Map<String, Object> rdfDocMap = new HashMap<>(); rdfDocMap.put("thumbnail", "http://example.com/data.rdf"); rdfDocMap.put("mimetype", "application/rdf+xml"); assertTrue("RDF MIME type should be target", generator.isTarget(rdfDocMap)); } finally { ComponentUtil.setFessConfig(null);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0)