- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 480 for Floats (0.06 sec)
-
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) -
docs/yo/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 - 24.1K bytes - Viewed (0) -
docs/fa/docs/index.md
```Python hl_lines="4 9-12 25-27" from typing import Optional 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 - 26K bytes - Viewed (0) -
cmd/bucket-metadata.go
func (b *BucketMetadata) SetCreatedAt(createdAt time.Time) { if b.Created.IsZero() { b.Created = UTCNow() } if !createdAt.IsZero() { b.Created = createdAt.UTC() } } // Load - loads the metadata of bucket by name from ObjectLayer api. // If an error is returned the returned metadata will be default initialized. func readBucketMetadata(ctx context.Context, api ObjectLayer, name string) (BucketMetadata, error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 16 14:27:42 UTC 2025 - 18.1K bytes - Viewed (0) -
docs/fr/docs/tutorial/path-params-numeric-validations.md
{* ../../docs_src/path_params_numeric_validations/tutorial005_an_py39.py hl[10] *} ## Validations numรฉriques : flottants, supรฉrieur et infรฉrieur Les validations numรฉriques fonctionnent รฉgalement pour les valeurs `float`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 6.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
assertEquals( new Sink(4).putUnencodedChars(s).hash(), new Sink(4).putString(s, UTF_16LE).hash()); } } public void testFloat() { Sink sink = new Sink(4); sink.putFloat(Float.intBitsToFloat(0x04030201)); HashCode unused = sink.hash(); sink.assertInvariants(4); sink.assertBytes(new byte[] {1, 2, 3, 4}); } public void testDouble() { Sink sink = new Sink(8);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java
return null; } @Override public String getTrackTotalHits() { return null; } @Override public Float getMinScore() { return null; } @Override public String[] getResponseFields() { return new String[0]; } }; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
*/ public String getTrackTotalHits() { return null; } /** * Returns the min score. * * @return The min score. */ public Float getMinScore() { return null; } /** * Returns true if the request has a condition query, otherwise false. * * @return True if the request has a condition query, otherwise false.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0)