- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 365 for exit (0.01 sec)
-
android/guava/src/com/google/common/collect/BoundType.java
/** * Indicates whether an endpoint of some range is contained in the range itself ("closed") or not * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the * bound simply does not exist. * * @since 10.0 */ @GwtCompatible public enum BoundType { /** The endpoint value <i>is not</i> considered part of the set ("exclusive"). */ OPEN(false), CLOSED(true); final boolean inclusive;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/EditForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * The edit form for Related Query. * This form extends CreateForm and adds fields necessary for editing existing related query entries. */ public class EditForm extends CreateForm {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
* @return the path to the JAR file * @throws ThemeException if the JAR file does not exist */ protected Path getJarFile(final Artifact artifact) { final Path jarPath = ResourceUtil.getPluginPath(artifact.getFileName()); if (!Files.exists(jarPath)) { throw new ThemeException(artifact.getFileName() + " does not exist."); } return jarPath; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
}); return asJson(new ApiResponse().status(Status.OK).result()); } /** * Creates an edit body from a file authentication entity for API responses. * * @param entity the file authentication entity to convert * @return edit body containing the entity data */ protected EditBody createEditBody(final FileAuthentication entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java
*/ public CreateForm() { // Default constructor } /** Dictionary identifier */ @Required public String dictId; /** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Word or phrase to be protected from analysis */ @Required @Size(max = 1000) public String input; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
guava/src/com/google/common/io/Files.java
* * <p>Files are mapped from offset 0 to {@code size}. * * <p>If the mode is {@link MapMode#READ_WRITE} and the file does not exist, it will be created * with the requested {@code size}. Thus this method is useful for creating memory mapped files * which do not yet exist. * * <p>This only works for files ≤ {@link Integer#MAX_VALUE} bytes. * * @param file the file to map
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.fileconfig; import org.codelibs.fess.app.web.admin.fileconfig.EditForm; /** * Request body class for file config edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for file 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/group/EditBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.group; import org.codelibs.fess.app.web.admin.group.EditForm; /** * Request body class for group edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for group 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/relatedquery/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.relatedquery; import org.codelibs.fess.app.web.admin.relatedquery.EditForm; /** * Request body class for related query edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for related query 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/reqheader/EditBody.java
*/ package org.codelibs.fess.app.web.api.admin.reqheader; import org.codelibs.fess.app.web.admin.reqheader.EditForm; /** * Request body class for request header edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for request header 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)