- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 815 for FORM (0.01 sec)
-
docs/es/llm-prompt.md
* a little bit: un poquito * graph (data structure, as in "dependency graph"): grafo (do not translate to "gráfico") * form data: form data (do not translate to "datos de formulario" or "datos de form") * import (as in code import): import (do not translate to "importación") * JSON Schema: JSON Schema (do not translate to "Esquema JSON") * embed: embeber (do not translate to "incrustar")
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 18:57:50 UTC 2025 - 5.3K bytes - Viewed (0) -
cmd/signature-v4_test.go
now := UTCNow() accessKey := globalActiveCred.AccessKey testCases := []struct { form http.Header expected APIErrorCode }{ // (0) It should fail if 'X-Amz-Credential' is missing. { form: http.Header{}, expected: ErrCredMalformed, }, // (1) It should fail if the access key is incorrect. { form: http.Header{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/SuggestForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.suggest; /** * This class is a form for suggest settings. */ public class SuggestForm { /** * Constructs a new suggest form. */ public SuggestForm() { // do nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 862 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for editing duplicate host configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing duplicate host entries, * including tracking information for optimistic locking and audit trails.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * The create form for Path Map. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** * The CRUD operation mode (create, update, etc.).
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
cmd/admin-handlers-idp-openid.go
writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminOpenIDNotEnabled), r.URL) return } userList := r.Form["users"] isAll := r.Form.Get("all") == "true" selfOnly := !isAll && len(userList) == 0 cfgName := r.Form.Get("configName") allConfigs := r.Form.Get("allConfigs") == "true" if cfgName == "" && !allConfigs { cfgName = madmin.Default } if isAll && len(userList) > 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:38:46 UTC 2025 - 7.6K bytes - Viewed (0) -
cmd/admin-handlers-site-replication.go
createdAt, cerr := time.Parse(time.RFC3339Nano, strings.TrimSpace(r.Form.Get("createdAt"))) if cerr != nil { createdAt = timeSentinel } opts := MakeBucketOptions{ LockEnabled: r.Form.Get("lockEnabled") == "true", VersioningEnabled: r.Form.Get("versioningEnabled") == "true", ForceCreate: r.Form.Get("forceCreate") == "true", CreatedAt: createdAt, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java
import jakarta.validation.constraints.Size; /** * The create form for File Authentication. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor } /** The CRUD operation mode for this form. */ @ValidateTypeFailure public Integer crudMode;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * The create form for Web Authentication. */ public class CreateForm { /** * Default constructor. */ public CreateForm() { // Empty constructor } /** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.dict.protwords; import org.lastaflute.web.validation.Required; /** * The download form for protected words dictionary. * This form is used for downloading protected words dictionary files from the admin interface. * */ public class DownloadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)