- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 872 for rest (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.labeltype; import org.codelibs.fess.app.web.admin.labeltype.EditForm; /** * Request body class for label type edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for label type management operations. */ public class EditBody extends EditForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.role; import org.codelibs.fess.app.web.admin.role.EditForm; /** * Request body class for role edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for role management operations. */ public class EditBody extends EditForm { /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.searchlist; import org.codelibs.fess.app.web.admin.searchlist.EditForm; /** * Request body class for search list edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for search list management operations. */ public class EditBody extends EditForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.webconfig; import org.codelibs.fess.app.web.admin.webconfig.EditForm; /** * Request body class for web config edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for web configuration management operations. */ public class EditBody extends EditForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.accesstoken; import org.codelibs.fess.app.web.admin.accesstoken.EditForm; /** * Request body class for access token edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for access token management operations. */ public class EditBody extends EditForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java
/** * Download body for synonym dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading synonym dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.scheduler; import org.codelibs.fess.app.web.admin.scheduler.EditForm; /** * Request body class for scheduler edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for scheduler management operations. */ public class EditBody extends EditForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/Comparators.java
return least(k, comparator.reversed()); } /** * Returns a comparator of {@link Optional} values which treats {@link Optional#empty} as less * than all other values, and orders the rest using {@code valueComparator} on the contained * value. * * @since 22.0 (but only since 33.4.0 in the Android flavor) */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.9K bytes - Viewed (0) -
.github/workflows/scorecard.yml
# repo_token: ${{ secrets.SCORECARD_TOKEN }} # Public repositories: # - Publish results to OpenSSF REST API for easy access by consumers # - Allows the repository to include the Scorecard badge. # - See https://github.com/ossf/scorecard-action#publishing-results. # For private repositories:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 2.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java
return ImmutableSet.of(e1, e2, e3, e4, e5); } @Override protected <E extends Comparable<? super E>> Set<E> of( E e1, E e2, E e3, E e4, E e5, E e6, E... rest) { return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); } @Override protected <E extends Comparable<? super E>> Set<E> copyOf(E[] elements) { return ImmutableSet.copyOf(elements); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.1K bytes - Viewed (0)