- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 589 for FLOAT (0.03 sec)
-
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp
<la:message key="labels.search_list_configuration"/> </h1> </div> <div class="col-sm-6"> <ol class="breadcrumb float-sm-right"> <li class="breadcrumb-item active"><la:link href="/admin/searchlist"> <la:message key="labels.search_list_configuration"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Sep 24 13:09:22 UTC 2020 - 20K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java
false, "Boolean", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnBoost = cci("boost", "boost", null, null, Float.class, "boost", null, false, false, false, "Float", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnConfigParameter = cci("configParameter", "configParameter", null, null, String.class,
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.4K bytes - Viewed (0) -
.github/actions/people/app/main.py
# Sponsors class SponsorEntity(BaseModel): login: str avatarUrl: str url: str class Tier(BaseModel): name: str monthlyPriceInDollars: float class SponsorshipAsMaintainerNode(BaseModel): sponsorEntity: SponsorEntity tier: Tier class SponsorshipAsMaintainerEdge(BaseModel): cursor: str
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:13:50 UTC 2024 - 19.2K bytes - Viewed (1) -
tests/test_extra_routes.py
from fastapi.responses import JSONResponse from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str price: Optional[float] = None @app.api_route("/items/{item_id}", methods=["GET"]) def get_items(item_id: str): return {"item_id": item_id} def get_not_decorated(item_id: str): return {"item_id": item_id}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 13.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
if ( ( read(this.tmp, 0, 8) ) < 0 ) { throw new SmbEndOfFileException(); } return Encdec.dec_uint64be(this.tmp, 0); } @Override public final float readFloat () throws SmbException { if ( ( read(this.tmp, 0, 4) ) < 0 ) { throw new SmbEndOfFileException(); } return Encdec.dec_floatbe(this.tmp, 0); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 12:01:33 UTC 2020 - 18.5K bytes - Viewed (0) -
internal/s3select/sql/evaluate.go
switch { case e.Int != nil: if *e.Int < math.MaxInt64 && *e.Int > math.MinInt64 { return FromInt(int64(*e.Int)), nil } return FromFloat(*e.Int), nil case e.Float != nil: return FromFloat(*e.Float), nil case e.String != nil: return FromString(string(*e.String)), nil case e.Boolean != nil: return FromBool(bool(*e.Boolean)), nil case e.Missing: return FromMissing(), nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 12K bytes - Viewed (0) -
docs/ja/docs/tutorial/path-params.md
} ] } ``` これは、パスパラメータ `item_id` が `int` ではない値 `"foo"` だからです。 <a href="http://127.0.0.1:8000/items/4.2" class="external-link" target="_blank">http://127.0.0.1:8000/items/4.2</a> で見られるように、intのかわりに `float` が与えられた場合にも同様なエラーが表示されます。 /// check | "確認" したがって、Pythonの型宣言を使用することで、**FastAPI**はデータのバリデーションを行います。 表示されたエラーには問題のある箇所が明確に指摘されていることに注意してください。 これは、APIに関連するコードの開発およびデバッグに非常に役立ちます。 /// ## ドキュメント
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.6K bytes - Viewed (0) -
tensorflow/c/eager/c_api.cc
i_vector.push_back(default_value.list().i(i)); } TFE_OpSetAttrIntList(op, attr_name, i_vector.data(), i_size); } // Float if (const int f_size = default_value.list().f_size()) { absl::InlinedVector<float, 4> f_vector; f_vector.reserve(f_size); for (int i = 0; i < f_size; ++i) { f_vector.push_back(default_value.list().f(i)); }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 43.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype.jsp
<%-- Paging Navigation --%> <div class="col-sm-10"> <ul class="pagination pagination-sm m-0 float-right"> <c:if test="${labelTypePager.existPrePage}"> <li class="page-item"><la:link
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
advance(8); } public long dec_ndr_hyper() { align(8); long val = Encdec.dec_uint64le(buf, index); advance(8); return val; } /* float */ /* double */ public void enc_ndr_string(String s) { align(4); int i = index; int len = s.length(); Encdec.enc_uint32le(len + 1, buf, i); i += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0)