- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 468 for float32 (2.25 sec)
-
docs/en/docs/index.md
```Python hl_lines="4 9-12 25-27" from typing import Union from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str price: float is_offer: Union[bool, None] = None @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None):
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
api/go1.6.txt
pkg image/color, type NYCbCrA struct, A uint8 pkg image/color, type NYCbCrA struct, embedded YCbCr pkg image/color, var NYCbCrAModel Model pkg math/big, method (*Float) MarshalText() ([]uint8, error) pkg math/big, method (*Float) UnmarshalText([]uint8) error pkg math/big, method (*Int) Append([]uint8, int) []uint8 pkg math/big, method (*Int) Text(int) string pkg math/rand, func Read([]uint8) (int, error)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 13 23:40:13 UTC 2016 - 12.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp
<la:message key="labels.searchlog_configuration"/> </h1> </div> <div class="col-sm-6"> <ol class="breadcrumb float-sm-right"> <li class="breadcrumb-item active"><la:link href="/admin/searchlog"> <la:message key="labels.searchlog_title"/> </la:link></li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
return boost.toString(); } return null; } public void setBoostValue(final String value) { if (value != null) { try { boost = Float.parseFloat(value); } catch (final Exception e) {} } } @Override public String getConfigId() { return ConfigType.FILE.getConfigId(getId()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/de/docs/tutorial/body.md
Die Funktionsparameter werden wie folgt erkannt: * Wenn der Parameter auch im **Pfad** deklariert wurde, wird er als Pfad-Parameter interpretiert. * Wenn der Parameter ein **einfacher Typ** ist (wie `int`, `float`, `str`, `bool`, usw.), wird er als **Query**-Parameter interpretiert. * Wenn der Parameter vom Typ eines **Pydantic-Modells** ist, wird er als Request**body** interpretiert. /// note | Hinweis
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.1K bytes - Viewed (0) -
docs/es/docs/tutorial/response-model.md
{* ../../docs_src/response_model/tutorial004_py310.py hl[9,11:12] *} * `description: Union[str, None] = None` (o `str | None = None` en Python 3.10) tiene un valor por defecto de `None`. * `tax: float = 10.5` tiene un valor por defecto de `10.5`. * `tags: List[str] = []` tiene un valor por defecto de una lista vacía: `[]`. pero podrías querer omitirlos del resultado si no fueron en realidad almacenados.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
addClickCountField(map); } if (fessConfig.getIndexerFavoriteCountEnabledAsBoolean()) { addFavoriteCountField(map); } float documentBoost = 0.0f; for (final DocBoostMatcher docBoostMatcher : docBoostMatcherList) { if (docBoostMatcher.match(map)) { documentBoost = docBoostMatcher.getValue(map);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/resources/fess_message_nl.properties
errors.property_required={0} is vereist. errors.property_type_integer={0} is een geheel getal. errors.property_type_long={0} is een lang geheel getal. errors.property_type_float={0} is een float. errors.property_type_double={0} is een double. errors.property_type_date={0} is een datum. errors.storage_file_upload_failure=Uploaden van {0} mislukt.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12K bytes - Viewed (0) -
docs/em/docs/features.md
✋️ 🔢, ⚫️ 🌐 **"👷"**. ### 🔬 * 🔬 🌅 (⚖️ 🌐 ❓) 🐍 **💽 🆎**, 🔌: * 🎻 🎚 (`dict`). * 🎻 🎻 (`list`) ⚖ 🏬 🆎. * 🎻 (`str`) 🏑, 🔬 🕙 & 👟 📐. * 🔢 (`int`, `float`) ⏮️ 🕙 & 👟 💲, ♒️. * 🔬 🌅 😍 🆎, 💖: * 📛. * 📧. * 🆔. * ...& 🎏. 🌐 🔬 🍵 👍-🏛 & 🏋️ **Pydantic**. ### 💂♂ & 🤝
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* @param width the screen width */ protected void updateHighlightInfo(final HighlightInfo highlightInfo, final int width) { if (width < TABLET_WIDTH) { float ratio = (float) width / (float) TABLET_WIDTH; if (ratio < 0.5) { ratio = 0.5f; } highlightInfo.fragmentSize((int) (highlightInfo.getFragmentSize() * ratio)); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)