- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 63 for generate (0.06 sec)
-
src/main/assemblies/files/generate-thumbnail
Shinsuke Sugaya <******@****.***> 1764835356 +0900
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 3.9K bytes - Viewed (0) -
CLAUDE.md
```bash # Format code (using external formatter config) mvn formatter:format # Check license headers mvn license:check # Add/update license headers mvn license:format # Generate Javadoc mvn javadoc:javadoc # Generate test coverage report mvn jacoco:report ``` ### Release Process ```bash # Sign artifacts (for releases) mvn verify # Deploy to Maven Central via Sonatype Central Portal
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
} } /** * Destroys the command generator and cleanup resources. */ @Override public void destroy() { destoryTimer.cancel(); destoryTimer = null; } /** * Generates a thumbnail for the given ID and saves it to the output file. * @param thumbnailId The ID of the thumbnail to generate. * @param outputFile The file where the thumbnail will be saved.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
* @param outputFile the file where the generated thumbnail will be saved * @return true if the thumbnail was successfully generated, false otherwise */ @Override public boolean generate(final String thumbnailId, final File outputFile) { if (logger.isDebugEnabled()) { logger.debug("Generate Thumbnail: {}", thumbnailId); } if (outputFile.exists()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
return null; } /** * Adds a thumbnail generator to the manager. * * @param generator the thumbnail generator to add */ public void add(final ThumbnailGenerator generator) { if (generator.isAvailable()) { if (logger.isDebugEnabled()) { logger.debug("{} is available.", generator.getName()); } generatorList.add(generator);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27K bytes - Viewed (0) -
ADDING_NEW_LANGUAGE.md
online.help.supported.langs=ja,sv # Add your language ``` If you have forum support: ```properties forum.supported.langs=en,ja,sv # Add your language ``` ### 4. Regenerate Auto-Generated Java Classes Fess uses DBFlute's LastaFlute FreeGen to automatically generate Java constants from property files. Run the regeneration command: ```bash # Option 1: Using Maven from project root mvn dbflute:freegen
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 11:36:30 UTC 2025 - 10.4K bytes - Viewed (0) -
CLAUDE.md
└── fess_indices/ # OpenSearch index mappings src/main/webapp/WEB-INF/view/ # JSP templates ``` ## DBFlute Code Generation DBFlute generates type-safe data access code for OpenSearch indices: ```bash mvn dbflute:freegen ``` Generated code: - `opensearch/{index}/bsentity/` - Base entities (do not edit) - `opensearch/{index}/exentity/` - Extended entities (customize here)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java
import java.util.ArrayList; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; /** * A chain of {@link ReadingConverter} implementations that applies each converter in sequence to generate possible reading variations of a given text. * It maintains a list of ReadingConverter instances and iterates through them, applying each converter to the input text and accumulating the results.Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 3.3K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* * <p> * The class uses a static {@code idCount} to generate unique IDs for each access result. * The {@code idCountLock} object is used to synchronize access to the {@code idCount} variable, * ensuring that IDs are generated in a thread-safe manner. * </p> * * <p> * The class also provides methods to get the count of access results for a given session,Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
popularWordsRequestBuilder.execute().getResponse().getItems().stream().forEach(item -> wordList.add(item.getText())); } catch (final SuggesterException e) { logger.warn("Failed to generate popular words.", e); } return wordList; }); } catch (final ExecutionException e) { logger.warn("Failed to load popular words.", e); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.3K bytes - Viewed (0)