- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 802 for users1 (0.05 sec)
-
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
@Override protected Class<? extends User> typeOfSelectedEntity() { return User.class; } @Override protected Class<User> typeOfHandlingEntity() { return User.class; } @Override protected Class<UserCB> typeOfHandlingConditionBean() { return UserCB.class; } public ListResultBean<User> selectList(CBCall<UserCB> cbLambda) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12K bytes - Viewed (0) -
docs/iam/access-management-plugin.md
Latency sensitive applications may notice an increased latency due to a request to the external plugin upon every authenticated request to MinIO. User are advised to provision their infrastructure such that latency and performance is acceptable. ## Quickstart
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Dec 13 22:28:48 UTC 2022 - 4.4K bytes - Viewed (1) -
LICENSE
product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 33.7K bytes - Viewed (0) -
docs/en/data/topic_repos.yml
stars: 6253 owner_login: hatchet-dev owner_html_url: https://github.com/hatchet-dev - name: fastapi-users html_url: https://github.com/fastapi-users/fastapi-users stars: 5849 owner_login: fastapi-users owner_html_url: https://github.com/fastapi-users - name: serge html_url: https://github.com/serge-chat/serge stars: 5756 owner_login: serge-chat
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Dec 01 13:17:29 UTC 2025 - 16K bytes - Viewed (0) -
docs_src/query_params/tutorial004_py39.py
from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/users/{user_id}/items/{item_id}") async def read_user_item( user_id: int, item_id: str, q: Union[str, None] = None, short: bool = False ): item = {"item_id": item_id, "owner_id": user_id} if q: item.update({"q": q}) if not short: item.update(
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 468 bytes - Viewed (0) -
helm-releases/minio-3.6.0.tgz
ts[].actions[]` - list of actions granted ### Create user after install Install the chart, specifying the users you want to create after install: ```bash helm install --set users[0].accessKey=accessKey,users[0].secretKey=secretKey,users[0].policy=none,users[1].accessKey=accessKey2,users[1].secretRef=existingSecret,users[1].secretKey=password,users[1].policy=none minio/minio ``` Description of the configuration parameters used above - - `users[].accessKey` - accessKey of user - `users[].secretKey`...
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Mar 13 22:44:21 UTC 2022 - 17.9K bytes - Viewed (0) -
helm-releases/minio-3.6.2.tgz
ts[].actions[]` - list of actions granted ### Create user after install Install the chart, specifying the users you want to create after install: ```bash helm install --set users[0].accessKey=accessKey,users[0].secretKey=secretKey,users[0].policy=none,users[1].accessKey=accessKey2,users[1].secretRef=existingSecret,users[1].secretKey=password,users[1].policy=none minio/minio ``` Description of the configuration parameters used above - - `users[].accessKey` - accessKey of user - `users[].secretKey`...
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Mar 17 18:30:55 UTC 2022 - 17.9K bytes - Viewed (0) -
guava/src/com/google/common/io/CharStreams.java
} return total; } /** * Reads all characters from a {@link Readable} object into a {@link String}. Does not close the * {@code Readable}. * * <p><b>Java 25+ users:</b> If the input is a {@link Reader}, prefer {@link * Reader#readAllAsString()}. * * @param r the object to read from * @return a string containing all the charactersRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 29 13:56:24 UTC 2025 - 11.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/builder/RequestDataBuilderTest.java
// Test complex scenario with GET method RequestData data = RequestDataBuilder.newRequestData().get().url("https://api.example.com/users/123").weight(0.8f).build(); assertEquals(Method.GET, data.getMethod()); assertEquals("https://api.example.com/users/123", data.getUrl()); assertEquals(0.8f, data.getWeight(), 0.001f); } public void test_complexScenarioWithPost() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 10.9K bytes - Viewed (0) -
docs_src/configure_swagger_ui/tutorial003_py39.py
from fastapi import FastAPI app = FastAPI(swagger_ui_parameters={"deepLinking": False}) @app.get("/users/{username}") async def read_user(username: str):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 201 bytes - Viewed (0)