Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 718 for requestor (0.04 sec)

  1. cmd/globals.go

    	GlobalKMS *kms.KMS
    
    	// Common lock for various subsystems performing the leader tasks
    	globalLeaderLock *sharedLock
    
    	// Auto-Encryption, if enabled, turns any non-SSE-C request
    	// into an SSE-S3 request. If enabled a valid, non-empty KMS
    	// configuration must be present.
    	globalAutoEncryption bool
    
    	// Is compression enabled?
    	globalCompressConfigMu sync.Mutex
    	globalCompressConfig   compress.Config
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 03 18:23:41 UTC 2024
    - 16.2K bytes
    - Viewed (1)
  2. docs/ko/docs/tutorial/testing.md

    ### 확장된 테스트 파일
    
    이제는 `test_main.py` 를 확장된 테스트들로 수정할 수 있습니다:
    
    {* ../../docs_src/app_testing/app_b/test_main.py *}
    
    
    클라이언트가 요청에 정보를 전달해야 하는데 방법을 모르겠다면, `httpx`에서 해당 작업을 수행하는 방법을 검색(Google)하거나, `requests`에서의 방법을 검색해보세요. HTTPX는 Requests의 디자인을 기반으로 설계되었습니다.
    
    그 후, 테스트에서도 동일하게 적용하면 됩니다.
    
    예시:
    
    * *경로* 혹은 *쿼리* 매개변수를 전달하려면, URL 자체에 추가한다.
    * JSON 본문을 전달하려면, 파이썬 객체 (예를들면 `dict`) 를 `json` 파라미터로 전달한다.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 10 11:24:48 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/https.md

    ### Decrypt the Request { #decrypt-the-request }
    
    The TLS Termination Proxy would use the encryption agreed to **decrypt the request**, and would transmit the **plain (decrypted) HTTP request** to the process running the application (for example a process with Uvicorn running the FastAPI application).
    
    <img src="/img/deployment/https/https05.drawio.svg">
    
    ### HTTP Response { #http-response }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/rdma/RdmaWorkRequest.java

            this.requestId = requestId;
            this.type = type;
            this.memoryRegion = memoryRegion;
            this.completed = false;
        }
    
        /**
         * Get request ID
         *
         * @return unique request identifier
         */
        public long getRequestId() {
            return requestId;
        }
    
        /**
         * Get request type
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		Description:    "Request has expired",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrRequestNotReadyYet: {
    		Code:           "AccessDenied",
    		Description:    "Request is not valid yet",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrSlowDownRead: {
    		Code:           "SlowDownRead",
    		Description:    "Resource requested is unreadable, please reduce your request rate",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
  6. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

        assertThat(result).contains(address("2a03:2880:f029:11:face:b00c:0:2"))
        val request1 = server.takeRequest()
        assertThat(request1.method).isEqualTo("GET")
        val request2 = server.takeRequest()
        assertThat(request2.method).isEqualTo("GET")
        assertThat(listOf(request1.url.encodedQuery, request2.url.encodedQuery))
          .containsExactlyInAnyOrder(
            "ct&dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/request-files.md

    # Archivos de Request
    
    Puedes definir archivos que serán subidos por el cliente utilizando `File`.
    
    /// info | Información
    
    Para recibir archivos subidos, primero instala <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md){.internal-link target=_blank}, activarlo y luego instalarlo, por ejemplo:
    
    ```console
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/request-forms.md

    hy.lee <******@****.***> 1733748175 +0900
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 09 12:42:55 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/request-form-models.md

    **FastAPI** **extraerá** los datos de **cada campo** de los **form data** en el request y te dará el modelo de Pydantic que definiste.
    
    ## Revisa la Documentación
    
    Puedes verificarlo en la interfaz de documentación en `/docs`:
    
    <div class="screenshot">
    <img src="/img/tutorial/request-form-models/image01.png">
    </div>
    
    ## Prohibir Campos de Formulario Extra
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/request-forms.md

    ///
    
    /// warning | Achtung
    
    Sie können mehrere `Form`-Parameter in einer *Pfadoperation* deklarieren, aber Sie können nicht gleichzeitig auch `Body`-Felder deklarieren, welche Sie als JSON erwarten, da der Request den Body mittels `application/x-www-form-urlencoded` statt `application/json` kodiert.
    
    Das ist keine Limitation von **FastAPI**, sondern Teil des HTTP-Protokolls.
    
    ///
    
    ## Zusammenfassung
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top