Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 305 for _items (0.07 sec)

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

        }
    
        public void test_register_nonEntityList() {
            RenderData data = new RenderData();
            List<String> stringList = Arrays.asList("item1", "item2", "item3");
    
            RenderDataUtil.register(data, "strings", stringList);
    
            Object result = data.getDataMap().get("strings");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                <li class="breadcrumb-item"><la:link href="/admin/crawlinginfo">
                                    <la:message key="labels.crawling_info_link_top"/>
                                </la:link></li>
                                <c:if test="${crudMode == 4}">
                                    <li class="breadcrumb-item active"><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword.jsp

                                                <tbody>
                                                <c:forEach var="data" varStatus="s"
                                                           items="${elevateWordItems}">
                                                    <tr
                                                            data-href="${contextPath}/admin/elevateword/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.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                                <tbody>
                                                <c:forEach var="data" varStatus="s"
                                                           items="${searchLogItems}">
                                                    <c:if test="${!logType.endsWith('_agg')}">
                                                        <tr
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 16K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/SplitterTest.java

        String simple = "a,b,c,d";
        Iterable<String> items = COMMA_SPLITTER.limit(1).split(simple);
        assertThat(items).containsExactly("a,b,c,d").inOrder();
      }
    
      public void testLimitSeparator() {
        String simple = "a,b,c,d";
        Iterable<String> items = COMMA_SPLITTER.limit(2).split(simple);
        assertThat(items).containsExactly("a", "b,c,d").inOrder();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

        private static class MockNamedNodeMap implements NamedNodeMap {
            private final Map<String, Node> items = new HashMap<>();
    
            public void setNamedItem(String name, Node node) {
                items.put(name, node);
            }
    
            @Override
            public Node getNamedItem(String name) {
                return items.get(name);
            }
    
            @Override
            public Node setNamedItem(Node arg) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        // Each group is a List of items, each item has a list of factory args.
        List<List<List<Object>>> argGroups = new ArrayList<>();
        argGroups.add(ImmutableList.of(args, equalArgs));
        EqualsTester tester =
            new EqualsTester(
                /* itemReporter= */ item -> {
                  List<Object> factoryArgs = argGroups.get(item.groupNumber).get(item.itemNumber);
                  return factory.getName()
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/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)
  9. src/main/java/org/codelibs/core/collection/ArrayIterator.java

        public static <T> Iterable<T> iterable(final T... items) {
            assertArgumentNotNull("items", items);
    
            return () -> new ArrayIterator<>(items);
        }
    
        /**
         * Creates an {@link ArrayIterator}.
         *
         * @param items the array of elements to iterate (must not be {@literal null})
         */
        public ArrayIterator(final T... items) {
            this.items = items;
        }
    
        @Override
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

        /**
         * Gets a specific protected words item by ID.
         * @param dictId the dictionary ID
         * @param id the item ID
         * @return the protected words item if found
         */
        public OptionalEntity<ProtwordsItem> getProtwordsItem(final String dictId, final long id) {
            return getProtwordsFile(dictId).map(file -> file.get(id).get());
        }
    
        /**
         * Stores a protected words item (insert or update).
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top