Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for _items (0.03 sec)

  1. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            TestDictionaryItem item1 = new TestDictionaryItem();
            TestDictionaryItem item2 = new TestDictionaryItem();
    
            item1.id = 100L;
            item2.id = 200L;
    
            assertEquals(100L, item1.getId());
            assertEquals(200L, item2.getId());
    
            // Verify they don't affect each other
            item1.id = 300L;
            assertEquals(300L, item1.getId());
            assertEquals(200L, item2.getId());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/systeminfo/admin_systeminfo.jsp

                            <div class="card-body">
    								<textarea id="envData" class="systemInfoData form-control"
                                              readonly>
    <c:forEach var="item" items="${envItems}">${f:h(item.label)}=${f:h(item.value)}
    </c:forEach>
    								</textarea>
                            </div>
                        </div>
                    </div>
                    <div class="col-md-6">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/searchResults.jsp

    		<c:if test="${facetResponse != null}">
    			<c:forEach var="fieldData" items="${facetResponse.fieldList}">
    				<c:if
    					test="${fieldData.name == 'label' && fieldData.valueCountMap.size() > 0}">
    					<ul class="list-group mb-2">
    						<li class="list-group-item text-uppercase"><la:message
    								key="labels.facet_label_title" /></li>
    						<c:forEach var="countEntry" items="${fieldData.valueCountMap}">
    							<c:if
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/RelationshipTester.java

        Item<T> itemInfo = getItem(groupNumber, itemNumber);
        Item<T> relatedInfo = getItem(groupNumber, relatedItemNumber);
    
        T item = itemInfo.value;
        T related = relatedInfo.value;
        assertWithTemplate(
            "$ITEM must be $RELATIONSHIP to $OTHER",
            itemInfo,
            relatedInfo,
            equivalence.equivalent(item, related));
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

                    || "oic.client.id".equals(key) //
                    || "oic.client.secret".equals(key);
        }
    
        /**
         * Gets a list of items relevant for bug reports.
         *
         * @return list of bug report items
         */
        public static List<Map<String, String>> getBugReportItems() {
            final List<Map<String, String>> itemList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/KuromojiService.java

         * Default constructor.
         */
        public KuromojiService() {
            // do nothing
        }
    
        /**
         * Get a list of Kuromoji items.
         *
         * @param dictId The dictionary ID.
         * @param kuromojiPager The pager for Kuromoji.
         * @return A list of Kuromoji items.
         */
        public List<KuromojiItem> getKuromojiList(final String dictId, final KuromojiPager kuromojiPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        }
    
        /**
         * Retrieves a specific Kuromoji dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the Kuromoji item to retrieve
         * @return JSON response containing the Kuromoji dictionary item
         */
        // GET /api/admin/dict/kuromoji/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

        }
    
        /**
         * Retrieves a specific stopwords dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the stopwords item to retrieve
         * @return JSON response containing the stopwords dictionary item
         */
        // GET /api/admin/dict/stopwords/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * the item's current state.
         * </p>
         *
         * @param dictId the dictionary ID to store the character mapping item in
         * @param charMappingItem the character mapping item to store
         */
        public void store(final String dictId, final CharMappingItem charMappingItem) {
            getCharMappingFile(dictId).ifPresent(file -> {
                if (charMappingItem.getId() == 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_details.jsp

                                            <td><c:forEach var="l" varStatus="s"
                                                           items="${labelTypeItems}">
                                                <c:forEach var="ltid" varStatus="s"
                                                           items="${labelTypeIds}">
                                                    <c:if test="${ltid==l.id}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top