- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 375 for UserName (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.java
* The unique identifier of the group being edited. * This is a required field for identifying which group to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this group. * Used for audit trail purposes to track who made changes. */ @Size(max = 1000) public String updatedBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java
* This is a required field for identifying which path map to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this path mapping configuration. * Used for audit trail purposes to track who made changes. */ @Size(max = 1000) public String updatedBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java
* This is a required field for identifying which related content entry to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this related content configuration. * Used for audit trail purposes to track who made changes. */ @Size(max = 1000) public String updatedBy; /**
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/webauth/EditForm.java
* This is a required field for identifying which web authentication entry to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this web authentication configuration. * Used for audit trail purposes to track who made changes. * Maximum length is 255 characters. */ @Size(max = 255)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/em/docs/advanced/security/oauth2-scopes.md
## ✔ `username` & 💽 💠 👥 ✔ 👈 👥 🤚 `username`, & ⚗ ↔. & ⤴️ 👥 ✔ 👈 📊 ⏮️ Pydantic 🏷 (✊ `ValidationError` ⚠), & 🚥 👥 🤚 ❌ 👂 🥙 🤝 ⚖️ ⚖ 📊 ⏮️ Pydantic, 👥 🤚 `HTTPException` 👥 ✍ ⏭. 👈, 👥 ℹ Pydantic 🏷 `TokenData` ⏮️ 🆕 🏠 `scopes`. ⚖ 📊 ⏮️ Pydantic 👥 💪 ⚒ 💭 👈 👥 ✔️, 🖼, ⚫️❔ `list` `str` ⏮️ ↔ & `str` ⏮️ `username`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:03:10 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
public Integer crudMode; /** * The bad word to be filtered from search suggestions. */ @Required @Pattern(regexp = "[^\\s]+") public String suggestWord; /** * The username of the user who created this bad word entry. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this bad word entry was created. */ @ValidateTypeFailure
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
docs/ru/docs/tutorial/security/get-current-user.md
Но вы не ограничены использованием какой-то конкретной моделью данных, классом или типом. Вы хотите использовать в модели `id` и `email`, а `username` вам не нужен? Ну разумеется. Воспользуйтесь тем же инструментарием. Вам нужны только `строки`? Или только `словари`? Или непосредственно экземпляр модели класса базы данных? Все это работает точно также.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 10:52:27 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java
*/ public CreateForm() { // Empty constructor } /** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The username of the user. */ @Required @Size(max = 100) public String name; /** * The password for the user. */ @Size(max = 100) public String password; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
docs/logging/README.md
ARGS: brokers* (csv) comma separated list of Kafka broker addresses topic (string) Kafka topic used for bucket notifications sasl_username (string) username for SASL/PLAIN or SASL/SCRAM authentication sasl_password (string) password for SASL/PLAIN or SASL/SCRAM authentication sasl_mechanism (string) sasl authentication mechanism, default 'plain'
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/request-form-models.md
Pydantic의 모델 구성을 사용하여 추가(`extra`) 필드를 금지(`forbid`)할 수 있습니다: {* ../../docs_src/request_form_models/tutorial002_an_py39.py hl[12] *} 클라이언트가 추가 데이터를 보내려고 하면 **오류** 응답을 받게 됩니다. 예를 들어, 클라이언트가 폼 필드를 보내려고 하면: * `username`: `Rick` * `password`: `Portal Gun` * `extra`: `Mr. Poopybutthole` `extra` 필드가 허용되지 않는다는 오류 응답을 받게 됩니다: ```json { "detail": [ { "type": "extra_forbidden",
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:44:27 UTC 2024 - 2.3K bytes - Viewed (0)