Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 32 for formatter (0.05 seconds)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

         * @return LocalDateTime in UTC timezone
         */
        protected LocalDateTime parseDateTime(final String value, final DateTimeFormatter formatter) {
            return LocalDateTime.parse(value, formatter).atZone(ZoneId.systemDefault()).withZoneSameInstant(ZoneOffset.UTC).toLocalDateTime();
        }
    
        /**
         * Retrieves a specific search log entry by log type and ID.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
  3. 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)
  4. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/provider/BuildTimestampValueSource.kt

                // otherwise we'll use the current timestamp by default and miss
                val formatter = SimpleDateFormat("yyyyMMddHHmmssZ").apply {
                    timeZone = TimeZone.getTimeZone("UTC")
                }
                return formatter.format(Date(0L))
            }
    
            val buildTimestampFromReceipt = buildTimestampFromBuildReceipt.orNull
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 05 17:24:26 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  5. 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 header
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/job/JsonIndexExportFormatter.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 JSON files.
     */
    public class JsonIndexExportFormatter implements IndexExportFormatter {
    
        /**
         * Creates a new JsonIndexExportFormatter instance.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 07 10:31:36 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  7. 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)
  8. 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)
  9. 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 logs
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Aug 21 11:31:50 GMT 2016
    - 475 bytes
    - Click Count (0)
  10. 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)
Back to Top