- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 128 for createSet (0.21 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
/** * Show the create new page. * @param dictId The dictionary ID. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse createnew(final String dictId) { saveToken(); return asHtml(path_AdminDictMapping_AdminDictMappingEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
* * @return HTML response for the web authentication creation form */ @Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asHtml(path_AdminWebauth_AdminWebauthEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
cmd/iam.go
return skippedAccessKeys, err } var collectedErrors []error updatedKeysMap := make(map[string]madmin.SRSvcAccCreate) for ak, createReq := range accessKeyMap { parent := createReq.Parent groups := createReq.Groups _, err := ldap.NormalizeDN(parent) if err != nil { // not a valid DN, ignore. continue } hasDiff := false
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 75.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp
<c:choose> <c:when test="${crudMode == null}"> <la:link href="createnew" styleClass="btn btn-success btn-xs"> <em class="fa fa-plus"> <la:message key="labels.crud_link_create"/>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
/** * Displays the create new label type page. * * @return HTML response for the create page */ @Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asHtml(path_AdminLabeltype_AdminLabeltypeEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
/** * Show the create new page. * @param dictId The dictionary ID. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse createnew(final String dictId) { saveToken(); return asHtml(path_AdminDictProtwords_AdminDictProtwordsEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
/** * Displays the create new file configuration page. * * @return HTML response for the create page */ @Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asHtml(path_AdminFileconfig_AdminFileconfigEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java
// ---------- /** * Show the create new page. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asEditHtml().useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize(); form.crudMode = CrudMode.CREATE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
/** * Displays the form for creating a new role item. * * @return HTML response for the create form */ @Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asHtml(path_AdminRole_AdminRoleEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
* * @param form the create form * @return HTML response for the document creation form */ @Execute @Secured({ ROLE }) public HtmlResponse createnew(final CreateForm form) { saveToken(); form.initialize(); form.crudMode = CrudMode.CREATE; getDoc(form).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1)