Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for templates (0.06 sec)

  1. src/main/java/org/codelibs/fess/query/QueryCommand.java

             * @param boost The boost value.
             * @return The created query builder.
             */
            QueryBuilder buildQuery(String field, String text, float boost);
        }
    
        /**
         * Template method that handles the common pattern of query conversion:
         * 1. Check if field is DEFAULT_FIELD and apply default query builder
         * 2. Check if field is a search field and apply field-specific query
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 11:39:05 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. README.md

    - **Builder Pattern** - `CopyOptions` for configuring bean copying operations with fluent API
    - **Adapter Pattern** - Logging adapters (`JclLoggerAdapter`, `JulLoggerAdapter`) for different logging frameworks
    - **Template Method** - Resource traversal utilities with customizable handlers
    - **Utility Classes** - All core functionality exposed through static utility methods for easy access
    
    ### Performance Optimizations
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String JOB_TEMPLATE_TITLE_WEB = "job.template.title.web";
    
        /** The key of the configuration. e.g. File Crawler - {0} */
        String JOB_TEMPLATE_TITLE_FILE = "job.template.title.file";
    
        /** The key of the configuration. e.g. Data Crawler - {0} */
        String JOB_TEMPLATE_TITLE_DATA = "job.template.title.data";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            final String template = """
                    {"source":{"index":"__SOURCE_INDEX__","size":__SIZE__},"dest":{"index":"__DEST_INDEX__"}}
                    """;
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String source = template //
                    .replace("__SOURCE_INDEX__", fromIndex)//
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
Back to top