- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 533 for union_ (0.09 sec)
-
doc/go_mem.html
mentioned in the previous paragraph, limited to the information that <i>W</i> directly observes. </p> <p> The <i>happens before</i> relation is defined as the transitive closure of the union of the sequenced before and synchronized before relations. </p> <p> <b>Requirement 3</b>: For an ordinary (non-synchronizing) data read <i>r</i> on a memory location <i>x</i>,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Mar 04 15:54:42 UTC 2024 - 26.6K bytes - Viewed (0) -
docs/ja/docs/deployment/docker.md
* 空のファイル `__init__.py` を作成します * `main.py` ファイルを作成します: ```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 44.3K bytes - Viewed (0) -
doc/go_spec.html
interface { ~[]byte // the underlying type of []byte is itself ~MyInt // illegal: the underlying type of MyInt is not MyInt ~error // illegal: error is an interface } </pre> <p> Union elements denote unions of type sets: </p> <pre> // The Float interface represents all floating-point types // (including any named types whose underlying types are // either float32 or float64).
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
docs/pt/docs/deployment/docker.md
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile Agora, no mesmo diretório do projeto, crie um arquivo `Dockerfile` com: ```{ .dockerfile .annotate } # (1)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 37.4K bytes - Viewed (0) -
okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
parliament.nz school.nz // om : https://en.wikipedia.org/wiki/.om om co.om com.om edu.om gov.om med.om museum.om net.om org.om pro.om // onion : https://tools.ietf.org/html/rfc7686 onion // org : https://en.wikipedia.org/wiki/.org org // pa : http://www.nic.pa/ // Some additional second level "domains" resolve directly as hostnames, such as
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 240.3K bytes - Viewed (0) -
okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
uk.reclaim.cloud uk0.bigv.io uki.kumamoto.jp ukiha.fukuoka.jp ullensaker.no ullensvang.no ulm.museum ulsan.kr ulvik.no um.gov.pl umaji.kochi.jp umb.it umbria.it umi.fukuoka.jp umig.gov.pl unazuki.toyama.jp under.jp undersea.museum uni5.net unicloud.pl unicom union.aero univ.bj univ.sn university university.museum unjarga.no unjárga.no unnan.shimane.jp uno unusualperson.com unzen.nagasaki.jp uol uonuma.niigata.jp uozu.toyama.jp up.in upaas.kazteleport.kz upli.io upow.gov.pl upper.jp uppo.gov.pl ups urakawa.hokkaido.jp...
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 40.4K bytes - Viewed (1) -
cmd/testdata/xl-meta-merge.zip
NvGGÀ–¥‚&þ÷Õ KºS xrŽûÀxi`juOªszin滸Ē*˜' ¾ qjD ¦¼aÜc¥®ºImW M}ò²CsG¢xcÐtslôwWHªCY÷QKph¸Vñú}n18ôO¢ebv®VÖILxgk !iaxm„V_ÚÅ@GM[LÏû>TU\rÉ”°¡Çó eTi[¦oñwwýznˆ^q ãZfYI^KuoïuWˆLñˆNñ~Lª ˜´‚òÔà~DÕpÌ_ZZKxP]Õ²«ƒŽ 6/¼’©z rgLˆ7í~L# ܈• ¸¾“t - ¬è UoV|k±k„q~ÜqzRGW¸NïON DB@FHbÚÆ ñncE²{¥me `r IxGJ~KÕ>kv\¢¯req£¯Îéü >)Þê)i noŠÐQrVy²HITqIò{¼L~so¸ ˜ Š²@c¾ ºµ‚®Ð^`dD_V^iLzKdlwÕº¥ ² ° ,ª«Ð²tåB†7“fVoLFª—˜š˜ £€‘¸ …`Šƒ! , öWwNÚaws²eÐPGxnïUºDsGBýptÜdxj@Ä·¹²"oÕB¬ it ¸…UxRqåNg|SVIÖBqq¥ <IEˆ¤{_UòC¼ gT3 ¸ ñhGmfq Ú3q\› ¼ GTBwÖºwm...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 08 17:50:48 UTC 2024 - 30.2K bytes - Viewed (0) -
doc/go1.17_spec.html
name <code>E</code> in place of a method specification. This is called <i>embedding</i> interface <code>E</code> in <code>T</code>. The <a href="#Method_sets">method set</a> of <code>T</code> is the <i>union</i> of the method sets of <code>T</code>’s explicitly declared methods and of <code>T</code>’s embedded interfaces. </p> <pre> type Reader interface { Read(p []byte) (n int, err error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
`What for?' said the one who had spoken first. `That's none of YOUR business, Two!' said Seven. `Yes, it IS his business!' said Five, `and I'll tell him--it was for bringing the cook tulip-roots instead of onions.' Seven flung down his brush, and had just begun `Well, of all the unjust things--' when his eye chanced to fall upon Alice, as she stood watching them, and he checked himself suddenly: the
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 29 21:35:03 UTC 2012 - 145.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
* Add support for the webhook authorizer to make a Deny decision that short-circuits the union authorizer and immediately returns Deny. ([#53273](https://github.com/kubernetes/kubernetes/pull/53273), [@mikedanese](https://github.com/mikedanese))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0)