- Sort Score
- Num 10 results
- Language All
Results 471 - 480 of 1,090 for friends (0.04 seconds)
-
src/test/java/jcifs/dcerpc/msrpc/SamrAliasHandleTest.java
verify(mockDcerpcHandle).sendrecv(rpcCaptor.capture()); MsrpcSamrOpenAlias capturedRpc = rpcCaptor.getValue(); // We cannot directly access private fields of MsrpcSamrOpenAlias or its superclass // Instead, we verify the interaction with the DcerpcHandle and the return value. // The fact that the constructor completes without exception and sets 'opened' to true
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6.2K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6K bytes - Click Count (0) -
docs/ja/docs/tutorial/request-form-models.md
## ドキュメントで確認 { #check-the-docs } `/docs` のドキュメント UI で確認できます: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## 追加のフォームフィールドを禁止 { #forbid-extra-form-fields } 一部の特殊なユースケース(おそらくあまり一般的ではありません)では、フォームフィールドを Pydantic モデルで宣言したもののみに**制限**し、**追加**のフィールドを**禁止**したい場合があります。 /// note | 備考 これは FastAPI バージョン `0.114.0` 以降でサポートされています。🤓 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformByParentArray.java
* Side Public License, v 1. */ package org.elasticsearch.gradle.internal.test.rest.transform; import com.fasterxml.jackson.databind.node.ArrayNode; /** * A type of {@link RestTestTransform} that finds the transformation by a given key that has a value that is an {@link ArrayNode}. */ public interface RestTestTransformByParentArray extends RestTestTransform<ArrayNode> { /**Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1004 bytes - Click Count (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* * <p>This class ensures that the temporary file is deleted if it is not needed. * It uses a logger to log warnings if there are issues deleting the temporary file.</p> * * <p>Fields:</p> * <ul> * <li>{@code logger} - Logger instance for logging warnings.</li> * <li>{@code PREFIX} - Prefix for the temporary file name.</li> * <li>{@code SUFFIX} - Suffix for the temporary file name.</li>
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 3.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
assertEquals(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION, cmd.subCommand, "subCommand should be QUERY_FS_INFORMATION"); // the fields are set in the constructor – check that the counts match assertEquals(2, cmd.totalParameterCount, "totalParameterCount should be 2"); assertEquals(0, cmd.totalDataCount, "totalDataCount should be 0");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.5K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms.md
/// info `Form` 是直接继承自 `Body` 的类。 /// /// tip 要声明表单请求体,必须显式使用 `Form`,否则这些参数会被当作查询参数或请求体(JSON)参数。 /// ## 关于 "表单字段" { #about-form-fields } HTML 表单(`<form></form>`)向服务器发送数据时通常会对数据使用一种“特殊”的编码方式,这与 JSON 不同。 **FastAPI** 会确保从正确的位置读取这些数据,而不是从 JSON 中读取。 /// note | 技术细节 表单数据通常使用“媒体类型” `application/x-www-form-urlencoded` 进行编码。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.5K bytes - Click Count (0) -
internal/config/config_test.go
expectedFields: map[string]struct{}{ `connection_string="host=localhost port=2832"`: {}, `comment="really long comment"`: {}, }, }, // Incorrect delimiter, expected fields should be empty. { input: `comment:"really long comment" connection_string:"host=localhost port=2832"`, keys: []string{"connection_string", "comment"}, expectedFields: map[string]struct{}{}, },
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 4.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java
* * @return the one-based index of the column containing the problem or non-positive value if unknown */ int getColumnNumber(); /** * Gets the location of the problem. The location is a user-friendly combination of the values from * {@link #getSource()}, {@link #getLineNumber()} and {@link #getColumnNumber()}. The exact syntax of the returned * value is undefined. *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Mar 23 05:29:39 GMT 2023 - 3.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-form-models.md
## 检查文档 { #check-the-docs } 你可以在文档 UI 中验证它,地址为 `/docs`: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## 禁止额外的表单字段 { #forbid-extra-form-fields } 在某些特殊使用情况下(可能并不常见),你可能希望将表单字段**限制**为仅在 Pydantic 模型中声明过的字段,并**禁止**任何**额外**的字段。 /// note | 注意 自 FastAPI 版本 `0.114.0` 起支持此功能。🤓 /// 你可以使用 Pydantic 的模型配置来 `forbid` 任何 `extra` 字段:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.1K bytes - Click Count (0)