Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 190 for mentre (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java

     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
        }
    
        /** The dictionary ID to which this synonym entry belongs */
        @Required
        public String dictId;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

            // - Document count
            // - Index size
            // - Memory usage
            // - System stats
            // etc.
    
            for (Map.Entry<String, Object> entry : res.entrySet()) {
                logger.info("Stats field: {} = {}", entry.getKey(), entry.getValue());
            }
    
            logger.info("[END] statsContentTest");
        }
    
        @Test
        void statsResponseFormatTest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        /** Part of speech tag for the token */
        @Required
        @Size(max = 1000)
        public String pos;
    
        /**
         * Initializes the form with default values for creating a new Kuromoji dictionary entry.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2K bytes
    - Click Count (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

            fun wrap(a: kotlin.collections.Set<String>, b: kotlin.collections.HashSet<String>, c: kotlin.collections.LinkedHashSet<String>): Unit = Unit
    
            fun wrap(a: kotlin.collections.Map<String, String>, b: kotlin.collections.Map.Entry<String, String>): Unit = Unit
    
            fun wrap(a: kotlin.collections.HashMap<String, String>, b: kotlin.collections.LinkedHashMap<String, String>): Unit = Unit
    
        """
    
        @Language("kotlin")
        private
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jun 06 17:52:09 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java

         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the duplicate host configuration being edited.
         * This is a required field for identifying which duplicate host entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this duplicate host configuration.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

                    events.stream().collect(Collectors.groupingBy(LogNotificationEvent::getLevel));
    
            for (final Map.Entry<String, List<LogNotificationEvent>> entry : eventsByLevel.entrySet()) {
                final String level = entry.getKey();
                final List<LogNotificationEvent> levelEvents = entry.getValue();
                final String details = formatDetails(levelEvents, maxDetailsLength, maxDisplayEvents, maxMessageLength);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/orig/view/error/system.jsp

    <link href="${fe:url('/css/font-awesome.min.css')}"
    	rel="stylesheet" type="text/css" />
    </head>
    <body class="error">
    	<jsp:include page="../header.jsp" />
    	<main class="container">
    		<div class="text-center">
    			<h2>
    				<la:message key="labels.system_error_title" />
    			</h2>
    			<div class="errormessage"><la:message key="labels.contact_site_admin" /></div>
    		</div>
    	</main>
    	<jsp:include page="../footer.jsp" />
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        public String fileConfigId;
    
        /** The user who created this file authentication entry. */
        public String createdBy;
    
        /** The timestamp when this file authentication entry was created. */
        public String createdTime;
    
        /** The version number for optimistic locking. */
        public String versionNo;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                return false;
            }
            for (final Map.Entry<String, String> entry : conditionMap.entrySet()) {
                if (docMap.get(entry.getKey()) instanceof final String value && value.matches(entry.getValue())) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("[{}] match {}:{}", entry.getKey(), name, value);
                    }
                    return true;
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 13.4K bytes
    - Click Count (0)
Back to Top