- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 22 for formatter (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/job/IndexExportJob.java
*/ public IndexExportJob format(final String format) { this.formatter = createFormatter(format); return this; } /** * Creates a formatter for the given format name. * * @param format the format name * @return the formatter instance * @throws IllegalArgumentException if the format is null, empty, or not supported */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
final IndexExportFormatter formatter = indexExportJob.createFormatter("html"); assertTrue(formatter instanceof HtmlIndexExportFormatter); } @Test public void test_createFormatter_json() { final IndexExportFormatter formatter = indexExportJob.createFormatter("json"); assertTrue(formatter instanceof JsonIndexExportFormatter); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
*/ public void importCsv(final Reader reader) { @SuppressWarnings("resource") final CsvReader csvReader = new CsvReader(reader, new CsvConfig()); final DateFormat formatter = new SimpleDateFormat(CoreLibConstants.DATE_FORMAT_ISO_8601_EXTEND); try { List<String> list; csvReader.readValues(); // ignore headerCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.job; import java.util.Collection; import java.util.Map; import java.util.Set; /** * Formatter that outputs index documents as HTML files. */ public class HtmlIndexExportFormatter implements IndexExportFormatter { /** * Creates a new HtmlIndexExportFormatter instance. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 07 10:31:36 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/config/eclipse/formatter/java.xml
<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/> <setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/> <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/> <setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Sep 17 06:39:42 GMT 2017 - 30.5K bytes - Click Count (1) -
src/main/assemblies/files/logging.properties
handlers=java.util.logging.FileHandler .level=INFO java.util.logging.ConsoleHandler.level=INFO java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter java.util.logging.FileHandler.level=INFO java.util.logging.FileHandler.pattern=${fess.log.path}/server_%g.log java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter java.util.logging.FileHandler.count=10 # Suppress warning logsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Aug 21 11:31:50 GMT 2016 - 475 bytes - Click Count (0) -
pom.xml
</configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codelibs.maven</groupId> <artifactId>yuicompressor-maven-plugin</artifactId> <version>2.0.0</version>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 49.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} final long time = Joda.forPattern(format).parseMillis(value); return new Date(time); } catch (final Exception e) { return null; } } /** * Formats a Date object to ISO datetime string format in UTC timezone. * * @param date the date to format * @return formatted date string, or empty string if date is null */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
public void setAppendHighlightParams(final String appendHighlightParams) { this.appendHighlightParams = appendHighlightParams; } /** * Sets the formatted execution time for the search request. * * @param execTime The formatted execution time string */ public void setExecTime(final String execTime) { this.execTime = execTime; } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/fe.tld
<example> ${fe:parseDate(doc.tstamp, "yyyy-MM-dd HH:mm:ss")} </example> </function> <function> <description> Returns formatted duration from a given value. </description> <name>formatDuration</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 18 11:38:54 GMT 2025 - 10.3K bytes - Click Count (0)