Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for response_mode (0.07 seconds)

  1. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                // v2.0 endpoint with MSAL4J (recommended)
                authUrl = getAuthority() + getTenant()
                        + "/oauth2/v2.0/authorize?response_type=code&scope=https://graph.microsoft.com/.default&response_mode=form_post&redirect_uri="
                        + URLEncoder.encode(getReplyUrl(request), Constants.UTF_8_CHARSET) + "&client_id=" + getClientId() + "&state=" + state
                        + "&nonce=" + nonce;
            } else {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  2. tests/test_response_model_as_return_annotation.py

    @app.get("/response_model-no_annotation-return_invalid_dict", response_model=User)
    def response_model_no_annotation_return_invalid_dict():
        return {"name": "John"}
    
    
    @app.get("/response_model-no_annotation-return_invalid_model", response_model=User)
    def response_model_no_annotation_return_invalid_model():
        return Item(name="Foo", price=42.0)
    
    
    @app.get(
        "/response_model-no_annotation-return_dict_with_extra_data", response_model=User
    )
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 50.3K bytes
    - Click Count (0)
  3. tests/test_generate_unique_id_function.py

        app = FastAPI(generate_unique_id_function=custom_generate_unique_id)
        router = APIRouter()
    
        @app.post("/", response_model=list[Item], responses={404: {"model": list[Message]}})
        def post_root(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        @router.post(
            "/router", response_model=list[Item], responses={404: {"model": list[Message]}}
        )
        def post_router(item1: Item, item2: Item):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 75K bytes
    - Click Count (0)
Back to Top