- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 142 for forma (0.02 sec)
-
openapi-user.yaml
L186: type: integer L187: format: int64 L188: example: 0 L189: page_size: L190: type: integer L191: example: 20 L192: page_number: L193: type: integer L194: example: 1 L195: record_count: L196: type: integer L197: format: int64 L198: example: 31625 L199: ...github.com/codelibs/fess/src/main/config/openap...Thu May 09 06:31:27 UTC 2024 21.6K bytes -
AdminSchedulerAction.java
form.crudMode = CrudMode.CREATE; L168: }); L169: }); L170: } L171: L172: @Execute L173: @Secured({ ROLE }) L174: public HtmlResponse edit(final EditForm form) { L175: validate(form, messages -> {}, this::asListHtml); L176: final String id = form.id; L177: scheduledJobService.getScheduledJob(id).ifPresent(entity -> { L178: loadScheduledJob(form, entity); L179: }).orElse(() -> { L180: throwValidationError(messages...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 18.1K bytes -
AdminBackupAction.java
@Execute L133: @Secured({ ROLE }) L134: public HtmlResponse upload(final UploadForm form) { L135: validate(form, messages -> {}, this::asListHtml); L136: verifyToken(this::asListHtml); L137: final String fileName = form.bulkFile.getFileName(); L138: final File tempFile = ComponentUtil.getSystemHelper().createTempFile("fess_restore_", ".tmp"); L139: try (final InputStream in = form.bulkFile.getInputStream(); final OutputStream out = new FileOutputStream(tempFile))...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
AdminMaintenanceAction.java
L103: L104: @Execute L105: @Secured({ ROLE }) L106: public HtmlResponse reindexOnly(final ActionForm form) { L107: validate(form, messages -> {}, this::asIndexHtml); L108: verifyToken(this::asIndexHtml); L109: if (startReindex(isCheckboxEnabled(form.replaceAliases), isCheckboxEnabled(form.resetDictionaries), form.numberOfShardsForDoc, L110: form.autoExpandReplicasForDoc)) { L111: saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL));...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 14K bytes -
fe.tld
L171: <description> L172: Returns a hidden form for Facet. L173: </description> L174: <name>facetForm</name> L175: <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> L176: <function-signature>java.lang.String facetForm()</function-signature> L177: <example> L178: ${fe:facetForm()} L179: </example> L180: </function> L181: L182: <function> L183: <description> L184: Returns a hidden form for More Like This. L185: </description> L186: ...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Dec 23 06:18:48 UTC 2023 10K bytes -
stopwords.txt
L137:houvessem L138:houver L139:houvermos L140:houverem L141:houverei L142:houverá L143:houveremos L144:houverão L145:houveria L146:houveríamos L147:houveriam L148:sou L149:somos L150:são L151:era L152:éramos L153:eram L154:fui L155:foi L156:fomos L157:foram L158:fora L159:fôramos L160:seja L161:sejamos L162:sejam L163:fosse L164:fôssemos L165:fossem L166:for L167:formos L168:forem L169:serei L170:será L171:seremos L172:serão L173:seria L174:seríamos L175:seriam L176:tenho L177:tem L178:temos L179:tém L180:tinha...github.com/codelibs/fess/src/main/resources/fes...Mon Nov 27 12:59:36 UTC 2023 1.4K bytes -
daterangepicker.js
this.ranges) { L1372: if (this.timePicker) { L1373: var format = this.timePickerSeconds ? "YYYY-MM-DD HH:mm:ss" : "YYYY-MM-DD HH:mm"; L1374: //ignore times when comparing dates if time picker seconds is not enabled L1375: if (this.startDate.format(format) == this.ranges[range][0].format(format) && this.endDate.format(format) == this.ranges[range][1].format(format)) { L1376: customRange = false; L1377: ...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 64.8K bytes -
AdminDictMappingAction.java
Jsp).useForm(CreateForm.class, op -> { L151: op.setup(form -> { L152: form.initialize(); L153: form.crudMode = CrudMode.CREATE; L154: form.dictId = dictId; L155: }); L156: }); L157: } L158: L159: @Execute L160: @Secured({ ROLE }) L161: public HtmlResponse edit(final EditForm form) { L162: validate(form, messages -> {}, () -> asListHtml(form.dictId)); L163: charMappingService.getCharMappingItem(form.dictId,...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 19.5K bytes -
AdminDictKuromojiAction.java
L396: L397: protected void verifyForm(final CreateForm form) { L398: if (form.token != null && form.token.split(" ").length > 1) { L399: throwValidationError(messages -> { L400: messages.addErrorsInvalidKuromojiToken("token", form.token); L401: }, this::asEditHtml); L402: } L403: if (form.segmentation != null && form.reading != null && form.segmentation.split(" ").length != form.reading.split(" ").length) { L404: throwValidationError(messages...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 18.8K bytes -
AdminUserAction.java
@Secured({ ROLE }) L210: public HtmlResponse create(final CreateForm form) { L211: verifyCrudMode(form.crudMode, CrudMode.CREATE); L212: validate(form, messages -> {}, this::asEditHtml); L213: validateAttributes(form.attributes, v -> throwValidationError(v, this::asEditHtml)); L214: verifyPassword(form, this::asEditHtml); L215: verifyToken(this::asEditHtml); L216: getUser(form).ifPresent(entity -> { L217: try { L218: userService.store(entity);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.9K bytes