Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for item1 (0.04 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. README.md

        System.out.println(response.getContentAsString());
    }
    ```
    
    ### Asynchronous request
    
    ```java
    import org.codelibs.curl.Curl;
    
    Curl.post("https://api.example.com/items")
        .body("{\"name\":\"item1\"}")
        .header("Content-Type", "application/json")
        .execute(
            response -> System.out.println("Async status: " + response.getHttpStatusCode()),
            error -> error.printStackTrace());
    ```
    
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:11:14 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/service/KuromojiService.java

                    .orElse(OptionalEntity.empty());
        }
    
        /**
         * Get a Kuromoji item.
         *
         * @param dictId The dictionary ID.
         * @param id The ID of the Kuromoji item.
         * @return An optional entity of the Kuromoji item.
         */
        public OptionalEntity<KuromojiItem> getKuromojiItem(final String dictId, final long id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * Retrieves a specific character mapping item by its ID from the specified dictionary.
         * <p>
         * This method looks up a character mapping item using its unique identifier
         * within the context of the specified dictionary.
         * </p>
         *
         * @param dictId the dictionary ID containing the character mapping item
         * @param id the unique identifier of the character mapping item
    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. android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java

          assertEquals(
              "the hash of " + item + " must be consistent",
              equivalence.hash(item),
              equivalence.hash(item));
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top