Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 297 for item3 (0.02 seconds)

  1. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords.jsp

                                                <c:forEach var="p" varStatus="s"
                                                           items="${pager.pageNumberList}">
                                                    <li
                                                            <c:if test="${p == pager.currentPageNumber}">class="page-item active"</c:if>>
                                                        <la:link
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. src/main/webapp/css/style.css

    }
    
    /* search */
    
    :first-child.list-group-item {
    	border-radius: 0px;
    }
    
    :last-child.list-group-item {
    	border-radius: 0px;
    }
    
    #result ol li {
    	margin: 1em 0;
    }
    
    #result ol li:first-child {
    	margin-top: 0;
    }
    
    #result .title a:visited {
    	color: #014c8c;
    }
    
    #result .body {
    	display: flex;
    	align-items: flex-start;
    }
    
    #result .site cite {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 2K bytes
    - Click Count (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            private
            inline fun <reified T> inAnyOrder(items: List<T>): Matcher<Iterable<T>> = inAnyOrder(items.toTypedArray())
    
            /**
             * Matcher checking each item is present exactly once in a given iterable, but an any position,
             * and that there are no unexpected items.
             */
            private
            fun <T> inAnyOrder(items: Array<out T>): Matcher<Iterable<T>> = Matchers.containsInAnyOrder(*items)
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 11:30:48 GMT 2026
    - 18.3K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/chat/chat.jsp

    										</div>
    										<div class="filter-dropdown-list">
    											<c:forEach var="item" items="${labelTypeItems}">
    											<label class="filter-check-item">
    												<input type="checkbox" class="filter-check" data-filter-type="label" data-filter-value="${f:h(item.value)}" />
    												<span class="filter-check-label">${f:h(item.label)}</span>
    											</label>
    											</c:forEach>
    										</div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing related query item.
         *
         * @param form the edit form containing the ID of the item to edit
         * @return HTML response for the edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16.3K bytes
    - Click Count (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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp

    			<c:forEach var="p" varStatus="s"
    				items="${pager.pageNumberList}">
    				<li
    					<c:if test="${p == pager.currentPageNumber}">class="page-item active"</c:if>><la:link
    						styleClass="page-link"
    						href="list/${p}">${p}</la:link></li>
    			</c:forEach>
    			<c:if test="${pager.existNextPage}">
    				<li class="page-item"><la:link
    						styleClass="page-link"
    						href="list/${pager.currentPageNumber + 1}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 1.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        }
    
        /**
         * Retrieves a specific synonym dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the synonym item to retrieve
         * @return JSON response containing the synonym dictionary item
         */
        // GET /api/admin/dict/synonym/setting/{dictId}/{id}
        @Execute
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp

                                        <la:select styleId="fileName" property="fileName" styleClass="form-control">
                                            <c:forEach var="item" varStatus="s" items="${fileNameItems}">
                                                <la:option value="${item}">${f:h(item)}</la:option>
                                            </c:forEach>
                                        </la:select>
                                    </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                }
                item = newItem;
            }
    
            /**
             * Writes a stopword item to the temporary file.
             * If the item is being updated, it writes the new version.
             *
             * @param oldItem The original item from the dictionary.
             * @return The written item, or null if the item was deleted.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 13K bytes
    - Click Count (0)
Back to Top