- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 689 for item2 (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
} RenderDataUtil.register(data, "fileConfigItems", itemList); } /** * Creates a dropdown item with label and value. * * @param label the item label * @param value the item value * @return map containing the item */ protected Map<String, String> createItem(final String label, final String value) { final Map<String, String> map = new HashMap<>(2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
docs/ru/docs/tutorial/query-params-str-validations.md
## Псевдонимы параметров Представьте, что вы хотите использовать query-параметр с названием `item-query`. Например: ``` http://127.0.0.1:8000/items/?item-query=foobaritems ``` Но `item-query` является невалидным именем переменной в Python. Наиболее похожее валидное имя `item_query`. Но вам всё равно необходим `item-query`...
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 24K bytes - Viewed (0) -
docs/es/docs/tutorial/bigger-applications.md
* busca el subpaquete `routers` (el directorio en `app/routers/`)... * y de él, importa el submódulo `items` (el archivo en `app/routers/items.py`) y `users` (el archivo en `app/routers/users.py`)... El módulo `items` tendrá una variable `router` (`items.router`). Este es el mismo que creamos en el archivo `app/routers/items.py`, es un objeto `APIRouter`. Y luego hacemos lo mismo para el módulo `users`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.3K bytes - Viewed (0) -
docs/de/docs/tutorial/query-params-str-validations.md
## Alias-Parameter Stellen Sie sich vor, der Parameter soll `item-query` sein. Wie in: ``` http://127.0.0.1:8000/items/?item-query=foobaritems ``` Aber `item-query` ist kein gültiger Name für eine Variable in Python. Am ähnlichsten wäre `item_query`. Aber Sie möchten dennoch exakt `item-query` verwenden.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.6K bytes - Viewed (0) -
docs/em/docs/advanced/generate-clients.md
👥 💪 ⏬ 🗄 🎻 📁 `openapi.json` & ⤴️ 👥 💪 **❎ 👈 🔡 🔖** ⏮️ ✍ 💖 👉: {* ../../docs_src/generate_clients/tutorial004.py *} ⏮️ 👈, 🛠️ 🆔 🔜 📁 ⚪️➡️ 👜 💖 `items-get_items` `get_items`, 👈 🌌 👩💻 🚂 💪 🏗 🙅 👩🔬 📛. ### 🏗 📕 👩💻 ⏮️ 🗜 🗄 🔜 🔚 🏁 📁 `openapi.json`, 👆 🔜 🔀 `package.json` ⚙️ 👈 🇧🇿 📁, 🖼: ```JSON hl_lines="7" { "name": "frontend-app",
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
And Python has a special data type for sets of unique items, the `set`. Then we can declare `tags` as a set of strings: {* ../../docs_src/body_nested_models/tutorial003_py310.py hl[12] *} With this, even if you receive a request with duplicate data, it will be converted to a set of unique items. And whenever you output that data, even if the source had duplicates, it will be output as a set of unique items.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
docs/pt/docs/python-types.md
<img src="/img/python-types/image05.png"> Sem tipos, isso é quase impossível de alcançar. Observe que a variável `item` é um dos elementos da lista `items`. E, ainda assim, o editor sabe que é um `str` e fornece suporte para isso. #### Tuple e Set Você faria o mesmo para declarar `tuple`s e `set`s: //// tab | Python 3.9+
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 10:32:53 UTC 2024 - 17.8K bytes - Viewed (0) -
docs/de/docs/advanced/generate-clients.md
In vielen Fällen wird Ihre FastAPI-Anwendung größer sein und Sie werden wahrscheinlich Tags verwenden, um verschiedene Gruppen von *Pfadoperationen* zu separieren. Beispielsweise könnten Sie einen Abschnitt für **Items (Artikel)** und einen weiteren Abschnitt für **Users (Benutzer)** haben, und diese könnten durch Tags getrennt sein: {* ../../docs_src/generate_clients/tutorial002_py39.py hl[21,26,34] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jun 17 11:53:56 UTC 2025 - 11.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ClassSanityTester.java
// Each group is a List of items, each item has a list of factory args. List<List<List<Object>>> argGroups = new ArrayList<>(); argGroups.add(ImmutableList.of(args, equalArgs)); EqualsTester tester = new EqualsTester( /* itemReporter= */ item -> { List<Object> factoryArgs = argGroups.get(item.groupNumber).get(item.itemNumber); return factory.getName()
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
/// ## ➕1️⃣ 🕹 ⏮️ `APIRouter` ➡️ 💬 👆 ✔️ 🔗 💡 🚚 "🏬" ⚪️➡️ 👆 🈸 🕹 `app/routers/items.py`. 👆 ✔️ *➡ 🛠️* : * `/items/` * `/items/{item_id}` ⚫️ 🌐 🎏 📊 ⏮️ `app/routers/users.py`. ✋️ 👥 💚 🙃 & 📉 📟 🍖. 👥 💭 🌐 *➡ 🛠️* 👉 🕹 ✔️ 🎏: * ➡ `prefix`: `/items`. * `tags`: (1️⃣ 🔖: `items`). * ➕ `responses`. * `dependencies`: 👫 🌐 💪 👈 `X-Token` 🔗 👥 ✍.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 15.5K bytes - Viewed (0)