Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 172 for _enter (0.05 seconds)

  1. src/main/resources/fess_label_zh_TW.properties

    labels.chat_welcome_description=輸入問題,我將搜尋文件為您找到答案。
    labels.chat_step_intent=分析
    labels.chat_step_search=搜尋
    labels.chat_step_evaluate=評估
    labels.chat_step_fetch=取得
    labels.chat_step_answer=回答
    labels.chat_input_hint=按 Enter 傳送,Shift+Enter 換行
    labels.chat_send=傳送訊息
    labels.chat_retry=重試
    labels.chat_dismiss=關閉
    labels.chat_copied=已複製!
    labels.chat_copy_failed=複製失敗
    
    labels.chat_filter=篩選
    labels.chat_filter_search_placeholder=搜尋...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.5K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    					</la:link>
    				</div>
    			</c:if>
    		</c:if>
    	</aside>
    </div>
    <div class="row">
    	<nav id="subfooter" class="mx-auto">
    		<ul class="pagination justify-content-center">
    			<c:if test="${existPrevPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Previous"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (1)
  3. src/main/resources/fess_label_ru.properties

    labels.chat_step_intent=Анализ
    labels.chat_step_search=Поиск
    labels.chat_step_evaluate=Оценка
    labels.chat_step_fetch=Получение
    labels.chat_step_answer=Ответ
    labels.chat_input_hint=Enter для отправки, Shift+Enter для новой строки
    labels.chat_send=Отправить сообщение
    labels.chat_retry=Повторить
    labels.chat_dismiss=Закрыть
    labels.chat_copied=Скопировано!
    labels.chat_copy_failed=Ошибка копирования
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 66.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

    import org.codelibs.fess.util.RenderDataUtil;
    import org.dbflute.optional.OptionalEntity;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.response.render.RenderData;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.validation.VaMessenger;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  5. src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java

            }
        }
    
        @Test
        public void test_genericTypeSafety_consistencyBetweenConstructorAndGetter() {
            // Verify consistency between constructor parameter type and getter return type
            // This test ensures the generic type change is consistent throughout the class
    
            // Test with RootAction.class
            Class<? extends RootAction> inputClass1 = RootAction.class;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                        "<link href=\"https://fonts.cdnfonts.com/css/dejavu-sans-mono\" rel=\"stylesheet\">"
                );
    
                // TODO: This would be better to model as separate options
                options.addStringOption("Xdoclint:syntax,html", "-quiet");
                // TODO: This breaks the provider
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 01 05:52:34 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_zh_CN.properties

    labels.chat_welcome_description=输入问题,我将搜索文档为您找到答案。
    labels.chat_step_intent=分析
    labels.chat_step_search=搜索
    labels.chat_step_evaluate=评估
    labels.chat_step_fetch=获取
    labels.chat_step_answer=回答
    labels.chat_input_hint=按 Enter 发送,Shift+Enter 换行
    labels.chat_send=发送消息
    labels.chat_retry=重试
    labels.chat_dismiss=关闭
    labels.chat_copied=已复制!
    labels.chat_copy_failed=复制失败
    
    labels.chat_filter=筛选
    labels.chat_filter_search_placeholder=搜索...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/job/PythonJobTest.java

        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            ComponentUtil.setFessConfig(null);
            super.tearDown(testInfo);
        }
    
        // Test filename setter
        @Test
        public void test_filename() {
            assertNull(pythonJob.filename);
    
            PythonJob result = pythonJob.filename("test.py");
    
            assertSame(pythonJob, result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  9. ADDING_NEW_LANGUAGE.md

    1. Detects language from document content using Apache Tika
    2. Validates against `supported.languages` list
    3. Creates language-specific fields (e.g., `content_ja`, `title_en`, `content_sv`)
    4. Applies language-specific analyzers for better search results
    
    Configured in `fess_config.properties`:
    ```properties
    indexer.language.fields=content,important_content,title
    ```
    
    ## Optional: Search Analysis Support
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
  10. architecture/standards/0010-gradle-properties-naming.md

    Shared scheme
    
    ```
    org.gradle[.<qualifier>].<feature-name>.<detail>
    ```
    
    The optional qualifier defines the secondary aspects, if any.
    
    For better ergonomics on the CLI, some properties can have supplementary command-line build option(s).
    The name of the feature in the build option SHOULD be the same as in the property name.
    
    Shared scheme for long-form build options:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
Back to Top