Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 199 of 199 for var1 (0.02 seconds)

  1. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

            });
    
            final AdminSearchlistAction action = new AdminSearchlistAction();
    
            final CreateForm form = new CreateForm();
            form.doc = new HashMap<>();
            form.doc.put("custom_array", "val1\nval2");
            form.doc.put("custom_date", "2025-01-01T00:00:00.000Z");
            form.doc.put("custom_long", "12345");
            form.doc.put("custom_float", "1.5");
            form.doc.put("custom_text", "hello");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        </div>
                                    </div>
                                    <%-- Extra Fields --%>
                                    <c:forEach var="fieldName" items="${extraFieldNames}">
                                        <div class="form-group row">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        public static final String FESS_THUMBNAIL_PATH = "fess.thumbnail.path";
    
        /** Fess variable path configuration key. */
        public static final String FESS_VAR_PATH = "fess.var.path";
    
        /** Fess log level configuration key. */
        public static final String FESS_LOG_LEVEL = "fess.log.level";
    
        /** Fess LLM log level configuration key. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

         */
        protected void applyPromptTypeParams(final LlmChatRequest request, final String promptType) {
            final String prefix = getConfigPrefix() + "." + promptType;
            final var config = ComponentUtil.getFessConfig();
    
            final String temp = config.getOrDefault(prefix + ".temperature", null);
            if (temp != null) {
                request.setTemperature(Double.parseDouble(temp));
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            final String value = transformer.normalizeCanonicalUrl("http://example.com/", "://");
            // java.net.URL(base, "://") prepends protocol, result may vary
            // The key point: no exception is thrown and a result is returned
            assertNotNull(value);
        }
    
        @Test
        public void test_getURL_withMalformedRelative() throws Exception {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:select styleId="ragLlmName" property="ragLlmName"
                                                       styleClass="form-control">
                                                <c:forEach var="item" items="${ragLlmNameItems}">
                                                    <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
                                                </c:forEach>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. smart_summary */
        String RAG_CHAT_HISTORY_ASSISTANT_CONTENT = "rag.chat.history.assistant.content";
    
        /** The key of the configuration. e.g. /var/lib/fess/export */
        String INDEX_EXPORT_PATH = "index.export.path";
    
        /** The key of the configuration. e.g. cache */
        String INDEX_EXPORT_EXCLUDE_FIELDS = "index.export.exclude.fields";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  8. src/main/resources/fess_config.properties

    # History content mode for assistant messages (full, smart_summary, source_titles, source_titles_and_urls, truncated, none).
    rag.chat.history.assistant.content=smart_summary
    
    # Index Export
    index.export.path=/var/lib/fess/export
    index.export.exclude.fields=cache
    index.export.scroll.size=100
    index.export.format=html
    
    # Log Notification
    # Interval (seconds) for flushing log notification buffer to search engine.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  9. src/main/webapp/js/bootstrap.min.js.map

    }\n  }\n\n  _getTemplateFactory(content) {\n    if (this._templateFactory) {\n      this._templateFactory.changeContent(content)\n    } else {\n      this._templateFactory = new TemplateFactory({\n        ...this._config,\n        // the `content` var has to be after `this._config`\n        // to override config.content in case of popover\n        content,\n        extraClass: this._resolvePossibleFunction(this._config.customClass)\n      })\n    }\n\n    return this._templateFactory\n  }\n\n  _...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 211.9K bytes
    - Click Count (0)
Back to Top