- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for nosuffix (0.05 sec)
-
pom.xml
<executions> <execution> <phase>compile</phase> <goals> <goal>compress</goal> </goals> </execution> </executions> <configuration> <nosuffix>true</nosuffix> <webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory> <excludes> <exclude>**/*min.js</exclude> <exclude>**/*min.css</exclude>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/vnd.curl.car", "application/vnd.curl.pcurl", "application/vnd.cybank", "application/vnd.data-vision.rdz", "application/vnd.denovo.fcselayout-link", "application/vnd.dir-bi.plate-dl-nosuffix", "application/vnd.dna", "application/vnd.dolby.mlp", "application/vnd.dolby.mobile.1", "application/vnd.dolby.mobile.2", "application/vnd.dpgraph", "application/vnd.dreamfactory",
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 50.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
} /** * Sets the log suffix for this job execution. * The suffix is trimmed and whitespace is replaced with underscores. * * @param logSuffix the suffix to append to log file names * @return this ExecJob instance for method chaining */ public ExecJob logSuffix(final String logSuffix) { this.logSuffix = logSuffix.trim().replaceAll("\\s", "_"); return this;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* * <p>Fields:</p> * <ul> * <li>{@code logger} - Logger instance for logging warnings.</li> * <li>{@code PREFIX} - Prefix for the temporary file name.</li> * <li>{@code SUFFIX} - Suffix for the temporary file name.</li> * <li>{@code done} - Flag indicating whether the file has been retrieved.</li> * </ul> * * <p>Constructors:</p> * <ul>
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java
* @param suffix The suffix string to be used in generating the file's name. * @param directory The directory in which the file is to be created, or null if the default temporary-file directory is to be used. * @return The created temporary file. */ protected File createTempFile(final String prefix, final String suffix, final File directory) { try {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
private static final Logger logger = LogManager.getLogger(ProtocolHelper.class); /** Array of supported web protocols with colon suffix (e.g., "http:", "https:") */ protected String[] webProtocols = StringUtil.EMPTY_STRINGS; /** Array of supported file protocols with colon suffix (e.g., "file:", "ftp:") */ protected String[] fileProtocols = StringUtil.EMPTY_STRINGS; /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 12.4K bytes - Viewed (1) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java
// Verify the prefix is correct assertEquals("crawler-S3Client-", prefix); assertEquals("Temp file suffix should be '.out'", ".out", suffix); assertNull("Directory should be null", directory); return super.createTempFile(prefix, suffix, directory); } };Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 20.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
@Override protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) { // Verify the prefix is correct assertTrue("Temp file prefix should be 'crawler-StorageClient-'", prefix.equals("crawler-StorageClient-")); assertEquals("Temp file suffix should be '.out'", ".out", suffix); assertNull("Directory should be null", directory);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** Optional suffix text after the target */ private final String suffix; /** * Constructs a new TextFragment. * * @param prefix optional prefix text * @param textStart start of the target text * @param textEnd optional end of the target text * @param suffix optional suffix text */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
} /** * Removes the suffix from the string if it is present. * * @param text * The text * @param suffix * The suffix to remove * @return The resulting string */ public static final String trimSuffix(final String text, final String suffix) { if (text == null) { return null; }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0)