Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 305 for _items (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java

            thread.start();
            thread.join(1000);
    
            String output = thread.getOutput();
            String[] lines = output.split("\n");
    
            assertTrue("Buffer should be limited to 10 items", lines.length <= 10);
            assertTrue("Last lines should be kept", output.contains("line15"));
        }
    
        public void test_run_maxBufferSizeConstant() {
            assertEquals(1000, InputStreamThread.MAX_BUFFER_SIZE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

        }
    
        /**
         * Checks whether this mapping item has pending updates.
         *
         * @return true if both newInputs and newOutput are not null, indicating pending updates
         */
        public boolean isUpdated() {
            return newInputs != null && newOutput != null;
        }
    
        /**
         * Checks whether this mapping item is marked for deletion.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp

                                                    <tbody>
                                                    <c:forEach var="data" varStatus="s"
                                                               items="${fileAuthenticationItems}">
                                                        <tr
                                                                data-href="${contextPath}/admin/fileauth/details/4/${f:u(data.id)}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Mar 27 06:24:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** The list of page numbers for pagination display. */
        private List<Integer> pageNumberList;
    
        /** The number of items to display per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The dictionary ID */
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/main/webapp/js/bootstrap.min.js.map

        }\n  }\n\n  _selectMenuItem({ key, target }) {\n    const items = SelectorEngine.find(SELECTOR_VISIBLE_ITEMS, this._menu).filter(element => isVisible(element))\n\n    if (!items.length) {\n      return\n    }\n\n    // if target isn't included in items (e.g. when expanding the dropdown)\n    // allow cycling to get the last item in case key equals ARROW_UP_KEY\n    getNextActiveElement(items, target, key === ARROW_DOWN_KEY, !items.includes(target)).focus()\n  }\n\n  // Static\n  static jQueryInterface(config)...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 211.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

        }
    
        /**
         * Retrieves a specific stemmer override dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the stemmer override item to retrieve
         * @return JSON response containing the stemmer override dictionary item
         */
        // GET /api/admin/dict/stemmerOverride/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_edit.jsp

                                <li class="breadcrumb-item active"><la:link href="/admin/elevateword">
                                    <la:message key="labels.elevate_word_link_list"/>
                                </la:link></li>
                                <c:if test="${crudMode == 1}">
                                    <li class="breadcrumb-item active"><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/user/admin_user.jsp

                                                </tr>
                                                </thead>
                                                <tbody>
                                                <c:forEach var="data" varStatus="s" items="${userItems}">
                                                    <tr
                                                            data-href="${contextPath}/admin/user/details/4/${f:u(data.id)}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_edit.jsp

                            <ol class="breadcrumb float-sm-right">
                                <li class="breadcrumb-item"><la:link href="/admin/dict">
                                    <la:message key="labels.dict_list_link"/>
                                </la:link></li>
                                <li class="breadcrumb-item"><la:link href="../list/1/?dictId=${f:u(dictId)}">
                                    <la:message key="labels.dict_stopwords_list_link"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost.jsp

                                                <tbody>
                                                <c:forEach var="data" varStatus="s"
                                                           items="${duplicateHostItems}">
                                                    <tr
                                                            data-href="${contextPath}/admin/duplicatehost/details/4/${f:u(data.id)}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.7K bytes
    - Viewed (0)
Back to top