- Sort Score
- Num 10 results
- Language All
Results 251 - 260 of 626 for userHome (0.05 seconds)
-
docs_src/path_operation_configuration/tutorial006_py39.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 365 bytes - Click Count (0) -
docs_src/response_model/tutorial002_py39.py
from typing import Union from fastapi import FastAPI from pydantic import BaseModel, EmailStr app = FastAPI() class UserIn(BaseModel): username: str password: str email: EmailStr full_name: Union[str, None] = None # Don't do this in production! @app.post("/user/") async def create_user(user: UserIn) -> UserIn:
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 350 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
* Search criteria: authentication ID. */ public String id; /** * Search criteria: port number. */ public String port; /** * Search criteria: username. */ public String username; /** * Search criteria: web configuration ID. */ public String webConfigId; /** * Search criteria: creator user. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.4K bytes - Click Count (0) -
internal/config/identity/openid/provider/provider.go
CodeChallengeMethodsSupported []string `json:"code_challenge_methods_supported,omitempty"` } // User represents information about user. type User struct { Name string `json:"username"` ID string `json:"id"` Enabled bool `json:"enabled"` } // Standard errors. var ( ErrNotImplemented = errors.New("function not implemented")
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Jan 18 07:03:17 GMT 2024 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java
/** The protocol scheme for file access (maximum 10 characters). */ @Size(max = 10) public String protocolScheme; /** The username for file authentication (required, maximum 100 characters). */ @Required @Size(max = 100) public String username; /** The password for file authentication (maximum 100 characters). */ @Size(max = 100) public String password;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
/** * The protocol scheme (http, https). */ @Size(max = 10) public String protocolScheme; /** * The username for authentication. */ @Required @Size(max = 100) public String username; /** * The password for authentication. */ @Size(max = 100) public String password; /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_details.jsp
<th><la:message key="labels.file_auth_username"/></th> <td>${f:h(username)}<la:hidden property="username"/></td> </tr> <tr> <th><la:message
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/config/es/fess_config_file_authentication.json
"type" : "keyword" }, "updatedBy" : { "type" : "keyword" }, "updatedTime" : { "type" : "long" }, "username" : { "type" : "keyword" } } } }, "settings" : { "index" : { "creation_date" : "1509021053135", "number_of_shards" : "5",
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 1.2K bytes - Click Count (0) -
docs_src/body_multiple_params/tutorial002_py310.py
from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None class User(BaseModel): username: str full_name: str | None = None @app.put("/items/{item_id}") async def update_item(item_id: int, item: Item, user: User): results = {"item_id": item_id, "item": item, "user": user}
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Jan 07 14:11:31 GMT 2022 - 446 bytes - Click Count (0) -
docs_src/body_multiple_params/tutorial003_an_py310.py
from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None class User(BaseModel): username: str full_name: str | None = None @app.put("/items/{item_id}") async def update_item( item_id: int, item: Item, user: User, importance: Annotated[int, Body()] ):
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Mar 18 12:29:59 GMT 2023 - 550 bytes - Click Count (0)