- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,400 for creator (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
* the status and metadata of web crawling operations. * */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructor } /** * The CRUD operation mode for this form. * Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public int crudMode; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
@Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; /** * The username of who created this scheduled job. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this scheduled job was created. */ @ValidateTypeFailure public Long createdTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
/** * Creates a new duplicate host setting. * * @param body duplicate host setting data to create * @return JSON response with created setting ID and status */ @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
* an I/O error, or if the target entry is evicted while this editor is active. In either case * we delete the editor's created files and prevent new files from being created. Note that once * an editor has been detached it is possible for another editor to edit the entry. */ internal fun detach() { if (entry.currentEditor == this) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating new stopwords dictionary entries. * This form handles the creation of stopwords that should be * excluded from search indexing and analysis. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** The dictionary ID to which this stopword entry belongs */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating new stemmer override dictionary entries. * This form handles the creation of stemmer override rules that modify * the stemming behavior for specific words. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
/** * Creates a new access token setting. * * @param body the create body containing access token data * @return JSON response with the created access token ID */ @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0)