Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for issues (0.04 sec)

  1. tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py

        )
        client = TestClient(mod.app)
        return client
    
    
    @pytest.mark.xfail(
        reason="Code example is not valid. See https://github.com/fastapi/fastapi/issues/12419"
    )
    def test_query_params_str_validations_no_query(client: TestClient):
        response = client.get("/items/")
        assert response.status_code == 200
        assert response.json() == {  # pragma: no cover
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    Guava, the best approach is to create an [issue][] (or comment on an existing
    issue if there is one) requesting the feature and describing specific use cases
    for it.
    
    If we decide to pursue a feature request, it will go through a thorough process
    of API design and review. Any code should come after this.
    
    [APIs]: https://en.wikipedia.org/wiki/API
    [issue]: https://github.com/google/guava/issues
    
    Pull requests
    -------------
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Dec 15 18:43:50 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. android/pom.xml

        <developerConnection>scm:git:******@****.***:google/guava.git</developerConnection>
        <url>https://github.com/google/guava</url>
      </scm>
      <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/google/guava/issues</url>
      </issueManagement>
      <ciManagement>
        <system>GitHub Actions</system>
        <url>https://github.com/google/guava/actions</url>
      </ciManagement>
      <properties>
        <!--
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 05 03:10:05 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  4. pom.xml

        <developerConnection>scm:git:******@****.***:google/guava.git</developerConnection>
        <url>https://github.com/google/guava</url>
      </scm>
      <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/google/guava/issues</url>
      </issueManagement>
      <ciManagement>
        <system>GitHub Actions</system>
        <url>https://github.com/google/guava/actions</url>
      </ciManagement>
      <properties>
        <!--
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 05 03:10:05 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  5. docs/es/docs/help-fastapi.md

    * <a href="https://github.com/fastapi/fastapi/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Aquestion+-label%3Aanswered+" class="external-link" target="_blank">GitHub Issues</a>
    
    En muchos casos, probablemente ya conozcas la respuesta a esas preguntas. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:15:01 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  6. tests/test_security_scopes_dont_propagate.py

    # Ref: https://github.com/tiangolo/fastapi/issues/5623
    
    from typing import Annotated, Any
    
    from fastapi import FastAPI, Security
    from fastapi.security import SecurityScopes
    from fastapi.testclient import TestClient
    
    
    async def security1(scopes: SecurityScopes):
        return scopes.scopes
    
    
    async def security2(scopes: SecurityScopes):
        return scopes.scopes
    
    
    async def dep3(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 973 bytes
    - Viewed (0)
  7. tests/test_tutorial/test_custom_request_and_route/test_tutorial002.py

                        "msg": "Input should be a valid list",
                        "input": {"numbers": [1, 2, 3]},
                    }
                ],
                # httpx 0.28.0 switches to compact JSON https://github.com/encode/httpx/issues/3363
                "body": IsOneOf('{"numbers": [1, 2, 3]}', '{"numbers":[1,2,3]}'),
            }
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .containsExactly(new File("/a"), grandParent);
      }
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      // https://github.com/google/guava/issues/2152
      public void testClassPathEntries_urlClassLoader_pathWithSpace() throws Exception {
        URL url = new URL("file:///c:/Documents and Settings/");
        URLClassLoader classloader = new URLClassLoader(new URL[] {url}, null);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 21:00:51 UTC 2025
    - 23K bytes
    - Viewed (0)
  9. tests/test_security_oauth2_authorization_code_bearer_scopes_openapi_simple.py

    # Ref: https://github.com/fastapi/fastapi/issues/14454
    
    from typing import Annotated
    
    from fastapi import Depends, FastAPI, Security
    from fastapi.security import OAuth2AuthorizationCodeBearer
    from fastapi.testclient import TestClient
    from inline_snapshot import snapshot
    
    oauth2_scheme = OAuth2AuthorizationCodeBearer(
        authorizationUrl="api/oauth/authorize",
        tokenUrl="/api/oauth/token",
        scopes={"read": "Read access", "write": "Write access"},
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. tests/test_no_schema_split.py

    # Test with parts from, and to verify the report in:
    # https://github.com/fastapi/fastapi/discussions/14177
    # Made an issue in:
    # https://github.com/fastapi/fastapi/issues/14247
    from enum import Enum
    
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    from inline_snapshot import snapshot
    from pydantic import BaseModel, Field
    
    
    class MessageEventType(str, Enum):
        alpha = "alpha"
        beta = "beta"
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top