- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 518 for manager (0.13 sec)
-
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
import com.orangesignal.csv.CsvConfig; import com.orangesignal.csv.CsvReader; import com.orangesignal.csv.CsvWriter; import jakarta.annotation.Resource; /** * Service class that manages crawling information and parameters. * This service provides CRUD operations for crawling sessions and their associated parameters, * including session management, cleanup operations, and CSV import/export functionality. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
import org.opensearch.index.query.QueryBuilders; /** * Implementation of IndexUpdateCallback that handles file list index updates with concurrent processing. * This callback processes file events (create, modify, delete) and manages document indexing and deletion * operations in the search engine. It supports recursive crawling with configurable depth and access count limits. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
docs/en/docs/contributing.md
To improve this, we’re working on automation tools 🤖 to manage translations more efficiently. Once ready, documentation will be machine-translated and still reviewed by at least two native speakers ✅ before publishing. This will allow us to keep translations up-to-date while reducing the review burden on maintainers....
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/extra-models.md
# 추가 모델 지난 예제에 이어서, 연관된 모델을 여러개 갖는 것은 흔한 일입니다. 특히 사용자 모델의 경우에 그러한데, 왜냐하면: * **입력 모델** 은 비밀번호를 가져야 합니다. * **출력 모델** 은 비밀번호를 가지면 안됩니다. * **데이터베이스 모델** 은 해시처리된 비밀번호를 가질 것입니다. /// danger | 위험 절대 사용자의 비밀번호를 평문으로 저장하지 마세요. 항상 이후에 검증 가능한 "안전한 해시(secure hash)"로 저장하세요. 만약 이게 무엇인지 모르겠다면, [security chapters](security/simple-oauth2.md#password-hashing){.internal-link target=_blank}.에서 비밀번호 해시에 대해 배울 수 있습니다. /// ## 다중 모델
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:38:33 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<li class="nav-item" data-bs-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />"> <a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a> </li> </c:if> <c:if test="${developmentMode}"> <li class="nav-item" data-bs-toggle="tooltip" data-placement="left" title="<la:message key="labels.development_mode_warning" />"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
docs/en/docs/tutorial/response-model.md
In this case, it might not be a problem, because it's the same user sending the password. But if we use the same model for another *path operation*, we could be sending our user's passwords to every client. /// danger Never store the plain password of a user or send it in a response like this, unless you know all the caveats and you know what you are doing. /// ## Add an output model { #add-an-output-model }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 16K bytes - Viewed (0) -
docs/pt/docs/tutorial/response-model.md
Neste caso, pode não ser um problema, porque é o mesmo usuário enviando a senha. Mas se usarmos o mesmo modelo para outra *operação de rota*, poderíamos estar enviando as senhas dos nossos usuários para todos os clientes. /// danger | Perigo Nunca armazene a senha simples de um usuário ou envie-a em uma resposta como esta, a menos que você saiba todas as ressalvas e saiba o que está fazendo. /// ## Adicionar um modelo de saída
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Nov 26 22:51:05 UTC 2024 - 16.5K bytes - Viewed (0) -
docs/nl/docs/features.md
def main(user_id: str): return user_id # Een Pydantic model class User(BaseModel): id: int name: str joined: date ``` Vervolgens kan je het op deze manier gebruiken: ```Python my_user: User = User(id=3, name="John Doe", joined="2018-07-19") second_user_data = { "id": 4, "name": "Mary", "joined": "2018-11-30", }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Sep 03 13:50:38 UTC 2024 - 10.1K bytes - Viewed (0) -
docs/ja/docs/tutorial/extra-models.md
# モデル - より詳しく 先ほどの例に続き、複数の関連モデルを持つことが一般的です。 これはユーザーモデルの場合は特にそうです。なぜなら: * **入力モデル** にはパスワードが必要です。 * **出力モデル**はパスワードをもつべきではありません。 * **データベースモデル**はおそらくハッシュ化されたパスワードが必要になるでしょう。 /// danger | 危険 ユーザーの平文のパスワードは絶対に保存しないでください。常に認証に利用可能な「安全なハッシュ」を保存してください。 知らない方は、[セキュリティの章](security/simple-oauth2.md#password-hashing){.internal-link target=_blank}で「パスワードハッシュ」とは何かを学ぶことができます。 /// ## 複数のモデル
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/de/docs/advanced/security/oauth2-scopes.md
Und wir geben die Scopes als Teil des JWT-Tokens zurück. /// danger | Gefahr Der Einfachheit halber fügen wir hier die empfangenen Scopes direkt zum Token hinzu.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 15.1K bytes - Viewed (0)