Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 911 - 920 of 1,732 for intent (2.02 seconds)

  1. doc/next/6-stdlib/99-minor/net/http/77370.md

    HTTP/1 [Response.Body] now automatically drains any unread content upon being
    closed, up to a conservative limit, to allow better connection reuse. For most
    programs, this change should be a no-op, or result in a performance improvement.
    In rare cases, programs that do not benefit from connection reuse might
    experience performance degradation if they had been improperly allowing an
    excessive amount of idle connections to linger; usually by setting
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Mar 24 13:29:25 GMT 2026
    - 863 bytes
    - Click Count (0)
  2. tests/test_multi_query_errors.py

                                    "description": "Successful Response",
                                    "content": {"application/json": {"schema": {}}},
                                },
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
                                        "application/json": {
                                            "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  3. tests/test_additional_response_extra.py

                        "get": {
                            "responses": {
                                "200": {
                                    "description": "Successful Response",
                                    "content": {"application/json": {"schema": {}}},
                                }
                            },
                            "summary": "Read Item",
                            "operationId": "read_item_items__get",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  4. docs_src/custom_request_and_route/tutorial001_py310.py

    
    class GzipRequest(Request):
        async def body(self) -> bytes:
            if not hasattr(self, "_body"):
                body = await super().body()
                if "gzip" in self.headers.getlist("Content-Encoding"):
                    body = gzip.decompress(body)
                self._body = body
            return self._body
    
    
    class GzipRoute(APIRoute):
        def get_route_handler(self) -> Callable:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 10 08:55:32 GMT 2025
    - 976 bytes
    - Click Count (0)
  5. tests/test_deprecated_openapi_prefix.py

                            "responses": {
                                "200": {
                                    "description": "Successful Response",
                                    "content": {"application/json": {"schema": {}}},
                                }
                            },
                        }
                    }
                },
                "servers": [{"url": "/api/v1"}],
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  6. tests/test_openapi_route_extensions.py

                        "get": {
                            "responses": {
                                "200": {
                                    "description": "Successful Response",
                                    "content": {"application/json": {"schema": {}}},
                                },
                            },
                            "summary": "Route With Extras",
                            "operationId": "route_with_extras__get",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/orig/view/searchNoResult.jsp

    								styleClass="btn btn-outline-secondary btn-sm me-1 mb-1">${f:h(item)}</la:link>
    						</c:forEach>
    					</p>
    				</div>
    			</c:if>
    		</div>
    	</div>
    	<div class="col-md-4"><%-- Side Content --%></div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 969 bytes
    - Click Count (0)
  8. tests/test_no_swagger_ui_redirect.py

        return {"id": "foo"}
    
    
    client = TestClient(app)
    
    
    def test_swagger_ui():
        response = client.get("/docs")
        assert response.status_code == 200, response.text
        assert response.headers["content-type"] == "text/html; charset=utf-8"
        assert "swagger-ui-dist" in response.text
        print(client.base_url)
        assert "oauth2RedirectUrl" not in response.text
    
    
    def test_swagger_ui_no_oauth2_redirect():
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 08 04:37:38 GMT 2020
    - 786 bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/searchNoResult.jsp

    								styleClass="btn btn-outline-secondary btn-sm me-1 mb-1">${f:h(item)}</la:link>
    						</c:forEach>
    					</p>
    				</div>
    			</c:if>
    		</div>
    	</div>
    	<div class="col-md-4"><%-- Side Content --%></div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 969 bytes
    - Click Count (0)
  10. okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt

     */
    package okhttp3.brotli
    
    import okhttp3.CompressionInterceptor
    import okhttp3.Gzip
    
    /**
     * Transparent Brotli response support.
     *
     * Adds Accept-Encoding: br to request and checks (and strips) for Content-Encoding: br in
     * responses.  n.b. this replaces the transparent gzip compression in BridgeInterceptor.
     */
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 15:15:28 GMT 2025
    - 979 bytes
    - Click Count (0)
Back to Top