Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 871 - 880 of 1,043 for requestID (0.19 seconds)

  1. docs/es/docs/advanced/settings.md

    Pero cada vez que hacemos:
    
    ```Python
    Settings()
    ```
    
    se crearía un nuevo objeto `Settings`, y al crearse leería el archivo `.env` nuevamente.
    
    Si la función de dependencia fuera simplemente así:
    
    ```Python
    def get_settings():
        return Settings()
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  2. docs/ko/docs/advanced/json-base64-bytes.md

    # 바이트를 Base64로 포함하는 JSON { #json-with-bytes-as-base64 }
    
    애플리케이션에서 JSON 데이터를 주고받아야 하지만 그 안에 바이너리 데이터를 포함해야 한다면, base64로 인코딩해서 포함할 수 있습니다.
    
    ## Base64와 파일 { #base64-vs-files }
    
    바이너리 데이터 업로드에는 [요청 파일](../tutorial/request-files.md)을, 바이너리 데이터 전송에는 [커스텀 응답 - FileResponse](./custom-response.md#fileresponse--fileresponse-)를 사용할 수 있는지 먼저 고려하세요. JSON으로 인코딩하는 대신 말입니다.
    
    JSON은 UTF-8로 인코딩된 문자열만 포함할 수 있으므로, 원시 바이트를 그대로 담을 수 없습니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

            }
        }
    
        @Nested
        @DisplayName("Request Properties Tests")
        class RequestPropertiesTests {
    
            @BeforeEach
            void setup() {
                testBlock = new TestServerMessageBlock(mockConfig);
            }
    
            @Test
            @DisplayName("Test default request properties")
            void testDefaultRequestProperties() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 36.2K bytes
    - Click Count (0)
  4. docs/ja/docs/help-fastapi.md

    GitHubレポジトリで[新しい質問](https://github.com/fastapi/fastapi/discussions/new?category=questions)を作成できます。例えば:
    
    * **質問**をする、または**問題**について尋ねる。
    * 新しい**機能**を提案する。
    
    **Note**: もしそうするなら、他の人の手助けもお願いします。😉
    
    ## プルリクエストをレビュー { #review-pull-requests }
    
    他の人からのプルリクエストのレビューを手伝ってもらえます。
    
    ここでも、できる限り親切であるようにしてください。🤗
    
    ---
    
    プルリクエストをレビューするときのポイントです:
    
    ### 問題を理解する { #understand-the-problem }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  5. cmd/metacache-set.go

    	if strings.Contains(o.FilterPrefix, slashSeparator) {
    		// Sanity check, should not happen.
    		o.FilterPrefix = ""
    	}
    }
    
    // filter will apply the options and return the number of objects requested by the limit.
    // Will return io.EOF if there are no more entries with the same filter.
    // The last entry can be used as a marker to resume the listing.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 30.7K bytes
    - Click Count (0)
  6. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

    import org.apache.maven.api.services.LookupException;
    import org.apache.maven.api.services.MessageBuilderFactory;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * Represents a request to parse Maven command-line arguments.
     * This interface encapsulates all the necessary information needed to parse
     * Maven commands and arguments into an {@link InvokerRequest}.
     *
     * @since 4.0.0
     */
    @Immutable
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Jun 07 06:22:47 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  7. docs/de/docs/_llm-test.md

    * Default
    * Groß-/Klein­schrei­bung ist relevant
    * Groß-/Klein­schrei­bung ist nicht relevant
    
    * die Anwendung bereitstellen
    * die Seite ausliefern
    
    * die App
    * die Anwendung
    
    * der Request
    * die Response
    * die Error-Response
    
    * die Pfadoperation
    * der Pfadoperation-Dekorator
    * die Pfadoperation-Funktion
    
    * der Body
    * der Requestbody
    * der Responsebody
    * der JSON-Body
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  8. docs/zh/docs/advanced/strict-content-type.md

    如果你的应用部署在开放的互联网,你不会“信任网络”,也不会允许任何人不经认证就发送特权请求。
    
    攻击者完全可以直接运行脚本向你的 API 发送请求,无需借助浏览器交互,因此你很可能已经对任何特权端点做好了安全防护。
    
    在这种情况下,以上攻击/风险不适用于你。
    
    该风险/攻击主要发生在应用运行于本地网络、且“仅依赖网络隔离作为保护”的场景。
    
    ## 允许无 Content-Type 的请求 { #allowing-requests-without-content-type }
    
    如果你需要兼容不发送 `Content-Type` 头的客户端,可以通过设置 `strict_content_type=False` 来关闭严格检查:
    
    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 3K bytes
    - Click Count (0)
  9. internal/crypto/sse-c.go

    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    )
    
    type ssec struct{}
    
    var (
    	// SSEC represents AWS SSE-C. It provides functionality to handle
    	// SSE-C requests.
    	SSEC = ssec{}
    
    	_ Type = SSEC
    )
    
    // String returns the SSE domain as string. For SSE-C the
    // domain is "SSE-C".
    func (ssec) String() string { return "SSE-C" }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  10. helm-releases/minio-4.0.15.tgz

    true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 fsGroupChangePolicy: "OnRootMismatch" # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ## List of policies to be created after minio install ## ## In addition to default policies [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## you can define additional policies...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Sep 21 11:07:01 GMT 2022
    - 20K bytes
    - Click Count (0)
Back to Top