- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 301 for relation (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
} return asListHtml(); } /** * Displays the form for creating a new document. * * @param form the create form * @return HTML response for the document creation form */ @Execute @Secured({ ROLE }) public HtmlResponse createnew(final CreateForm form) { saveToken(); form.initialize(); form.crudMode = CrudMode.CREATE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/Sets.java
* that is not contained in {@code set1}. * * <p>Results are undefined if {@code set1} and {@code set2} are sets based on different * equivalence relations, for example if {@code set1} is a {@link HashSet} and {@code set2} is a * {@link TreeSet} or the {@link Map#keySet} of an {@code IdentityHashMap}. */ public static <E extends @Nullable Object> SetView<E> union(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
docs/contribute/code_of_conduct.md
our best to right the wrong. Although this list cannot be exhaustive, we explicitly honor diversity in age, culture, ethnicity, gender identity or expression, language, national origin, political beliefs, profession, race, religion, sexual orientation, socioeconomic status, and technical ability. We will not tolerate discrimination based on any of the protected characteristics above, including participants with disabilities. Reporting Issues
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
// DELETE /api/admin/duplicatehost/setting/{id} /** * Deletes a specific duplicate host setting. * * @param id the duplicate host setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { duplicateHostService.getDuplicateHost(id).ifPresent(entity -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
}); } /** * Deletes job logs that have any of the specified job statuses. * * @param jobStatusList the list of job statuses to match for deletion */ public void deleteByJobStatus(final List<String> jobStatusList) { jobLogBhv.queryDelete(cb -> { cb.query().setJobStatus_InScope(jobStatusList); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result()); } /** * Deletes a plugin with the specified name and version. * * @param body the plugin deletion data containing name and version * @return JSON response indicating success or failure */ // DELETE /api/admin/plugin @Execute public JsonResponse<ApiResult> delete$index(final DeleteBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
value.startsWith("{labels.")); } } } /** * Test instance creation */ public void test_instanceCreation() { FessLabels labels = new FessLabels(); assertNotNull(labels); assertTrue(labels instanceof org.lastaflute.core.message.UserMessages); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
FessUserBean anotherBean = new FessUserBean(anotherUser); assertSame(anotherUser, anotherBean.getFessUser()); } public void test_empty() { // Test empty user bean creation FessUserBean emptyBean = FessUserBean.empty(); assertNotNull(emptyBean); // Test getUserId returns EMPTY_USER_ID assertEquals(Constants.EMPTY_USER_ID, emptyBean.getUserId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
* will be created by invoking #newThread(Runnable) on this backing {@link ThreadFactory}. * * @param backingThreadFactory the backing {@link ThreadFactory} which will be delegated to during * thread creation. * @return this for the builder pattern * @see MoreExecutors */ @CanIgnoreReturnValue public ThreadFactoryBuilder setThreadFactory(ThreadFactory backingThreadFactory) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
} // Test cookie cipher public void test_provideCookieCipher() { // provideCookieCipher is not directly exposed anymore // Testing through cookie spec creation instead // CookieSpec is not directly available for testing assertNotNull(cookieResourceProvider); } // Test with null configuration values public void test_withNullConfigValues() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0)