- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 145 for msword (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/badword/CreateBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.badword; import org.codelibs.fess.app.web.admin.badword.CreateForm; /** * Request body for creating bad word via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1001 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java
/** The ignore failure type setting. */ public String ignoreFailureType; /** The failure count threshold setting. */ public String failureCountThreshold; /** The popular word setting. */ public String popularWord; /** The CSV file encoding setting. */ public String csvFileEncoding; /** The purge search log day setting. */ public String purgeSearchLogDay;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.facet_contentLength_5m=5 МБ - labels.facet_filetype_title=Тип файла labels.facet_filetype_html=HTML labels.facet_filetype_word=MS Word labels.facet_filetype_excel=MS Excel labels.facet_filetype_powerpoint=MS PowerPoint labels.facet_filetype_odt=ODF Word labels.facet_filetype_ods=ODF Spreadsheet labels.facet_filetype_odp=ODF Presentation labels.facet_filetype_pdf=PDF labels.facet_filetype_fb2=FictionBook
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 55.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
*/ @Required public String dictId; /** * The multipart file containing the Kuromoji user dictionary to be uploaded. * This file should be in the Kuromoji user dictionary format containing custom word definitions. */ @Required public MultipartFormFile kuromojiFile; /** * Default constructor for UploadForm. * Creates a new instance with default values. */
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/protwords/CreateForm.java
} /** 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; /** * Initializes the form with default values for creating a new protected words entry. */
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/hash/ChecksumHashFunction.java
} @Override public HashCode hash() { long value = checksum.getValue(); if (bits == 32) { /* * The long returned from a 32-bit Checksum will have all 0s for its second word, so the * cast won't lose any information and is necessary to return a HashCode of the correct * size. */ return HashCode.fromInt((int) value); } else {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java
/** The suggest helper for managing suggest functionality. */ @Resource protected SuggestHelper suggestHelper; /** * Retrieves suggest statistics including word counts. * * @return JSON response containing suggest statistics */ // GET /api/admin/suggest @Execute public JsonResponse<ApiResult> get$index() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
if (this.isPrimary) { this.isPrimary = false; // primarySetupOffset // SMB_COM_TRANSACTION: 61 = 32 SMB header + 1 (word count) + 28 (fixed words) // SMB_COM_NT_TRANSACTION: 69 = 32 SMB header + 1 (word count) + 38 (fixed words) this.parameterOffset = this.primarySetupOffset; // 2* setupCount this.parameterOffset += this.setupCount * 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
* * @param id the ID of the scheduled job to start * @return JSON response indicating success or failure */ // PUT /api/admin/scheduler/{id}/start @Execute(urlPattern = "{}/@word") public JsonResponse<ApiResult> put$start(final String id) { scheduledJobService.getScheduledJob(id).ifPresent(entity -> { if (!entity.isEnabled() || entity.isRunning()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
/></option> <option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message key="labels.advance_search_filetype_pdf" /></option> <option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message key="labels.advance_search_filetype_word" /></option> <option value="excel" <c:if test="${as.filetype.contains('excel')}">selected</c:if>><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0)