- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 1,041 for gorm (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
* @return HTML response for the web authentication edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id; webAuthenticationService.getWebAuthentication(id).ifPresent(entity -> { copyBeanToBean(entity, form, op -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp
<div class="form-inline col-sm-9"> <la:errors property="jobLogging"/> <div class="form-check"> <la:checkbox styleId="jobLogging" styleClass="form-check-input" property="jobLogging"/> <label for="jobLogging" class="form-check-label">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 16 12:54:35 UTC 2023 - 9.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_edit.jsp
styleClass="form-control"/> </div> </div> <div class="form-group row"> <label for="reading" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.elevate_word_reading"/></label>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 9.2K bytes - Viewed (0) -
docs/em/docs/tutorial/request-forms.md
โฎ๏ธ `Form` ๐ ๐ช ๐ฃ ๐ ๐ณ โฎ๏ธ `Body` (& `Query`, `Path`, `Cookie`), ๐ ๐ฌ, ๐ผ, ๐ (โ `user-name` โฉ๏ธ `username`), โ๏ธ. /// info `Form` ๐ ๐ ๐ ๐ โช๏ธโก๏ธ `Body`. /// /// tip ๐ฃ ๐จ ๐ช, ๐ ๐ช โ๏ธ `Form` ๐ฏ, โฉ๏ธ ๐ต โซ๏ธ ๐ข ๐ ๐ฌ ๐ข ๐ข โ๏ธ ๐ช (๐ป) ๐ข. /// ## ๐ "๐จ ๐" ๐ ๐ธ ๐จ (`<form></form>`) ๐จ ๐ฝ ๐ฝ ๐ โ๏ธ "๐" ๐ข ๐ ๐, โซ๏ธ ๐ โช๏ธโก๏ธ ๐ป.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/en/docs/tutorial/request-forms.md
/// ## Import `Form` { #import-form } Import `Form` from `fastapi`: {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[3] *} ## Define `Form` parameters { #define-form-parameters } Create form parameters the same way you would for `Body` or `Query`: {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[9] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
* Deletes a specific search log entry. * * @param form the edit form containing the log entry information * @return HTML response redirecting to the list page after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS); validate(form, messages -> {}, this::asDetailsHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/ko/docs/tutorial/request-forms.md
/// info | ์ ๋ณด `Form`์ `Body`์์ ์ง์ ์์๋๋ ํด๋์ค์ ๋๋ค. /// /// tip | ํ ํผ ๋ณธ๋ฌธ์ ์ ์ธํ ๋, ํผ์ด ์์ผ๋ฉด ๋งค๊ฐ๋ณ์๊ฐ ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์๋ ๋ณธ๋ฌธ(JSON) ๋งค๊ฐ๋ณ์๋ก ํด์(interpret)๋๊ธฐ ๋๋ฌธ์ `Form`์ ๋ช ์์ ์ผ๋ก ์ฌ์ฉํด์ผ ํฉ๋๋ค. /// ## "ํผ ํ๋"์ ๋ํด HTML ํผ(`<form></form>`)์ด ๋ฐ์ดํฐ๋ฅผ ์๋ฒ๋ก ๋ณด๋ด๋ ๋ฐฉ์์ ์ผ๋ฐ์ ์ผ๋ก ํด๋น ๋ฐ์ดํฐ์ ๋ํด "ํน์" ์ธ์ฝ๋ฉ์ ์ฌ์ฉํ๋ฉฐ, ์ด๋ JSON๊ณผ ๋ค๋ฆ ๋๋ค. **FastAPI**๋ JSON ๋์ ์ฌ๋ฐ๋ฅธ ์์น์์ ํด๋น ๋ฐ์ดํฐ๋ฅผ ์ฝ์ต๋๋ค. /// note | ๊ธฐ์ ์ธ๋ถ์ฌํญ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:42:55 UTC 2024 - 3K bytes - Viewed (0) -
docs/pt/docs/tutorial/request-forms.md
$ pip install python-multipart ``` /// ## Importe `Form` Importe `Form` de `fastapi`: {* ../../docs_src/request_forms/tutorial001.py hl[1] *} ## Declare parรขmetros de `Form` Crie parรขmetros de formulรกrio da mesma forma que vocรช faria para `Body` ou `Query`: {* ../../docs_src/request_forms/tutorial001.py hl[7] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Jan 22 13:41:56 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
} /** * Deletes the specified plugin. * * @param form the delete form containing plugin information * @return HTML response redirecting to the plugin list */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final DeleteForm form) { validate(form, messages -> {}, () -> asHtml(path_AdminPlugin_AdminPluginJsp));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_edit.jsp
</div> </div> <c:if test="${crudMode==2}"> <div class="form-group row"> <label class="col-sm-3 text-sm-right col-form-label"><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 6K bytes - Viewed (0)