- Sort Score
- Result 10 results
- Languages All
Results 2071 - 2080 of 2,400 for pong (0.05 sec)
-
guava/src/com/google/common/io/BaseEncoding.java
checkNotNull(target); checkPositionIndexes(off, off + len, bytes.length); checkArgument(len <= alphabet.bytesPerChunk); long bitBuffer = 0; for (int i = 0; i < len; ++i) { bitBuffer |= bytes[off + i] & 0xFF; bitBuffer <<= 8; // Add additional zero byte in the end. }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 41.8K bytes - Viewed (0) -
docs/em/docs/advanced/custom-response.md
โ๏ธ ๐ ๐ถโโ๏ธ `HTMLResponse` `response_class` ๐โโ๏ธ, **FastAPI** ๐ ๐ญ โ ๐ โซ๏ธ ๐ & ๐ ๐ฉบ ๐ธ โฎ๏ธ `text/html`: <img src="/img/tutorial/custom-response/image01.png"> ## ๐ช ๐จ ๐ฅ ๐ช ๐จ. โ๏ธ ๐คฏ ๐ ๐ ๐ช โ๏ธ `Response` ๐จ ๐ณ ๐, โ๏ธ โ ๐ ๐ง-๐. /// note | "๐ก โน" ๐ ๐ช โ๏ธ `from starlette.responses import HTMLResponse`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
{!> ../../docs_src/dependencies/tutorial003_py310.py!} ``` //// ๊ทธ๋ฌ๋ ์๋ฃํ์ ์ ์ธํ๋ฉด ์๋ํฐ๊ฐ ๋งค๊ฐ๋ณ์ `commons`๋ก ์ ๋ฌ๋ ๊ฒ์ด ๋ฌด์์ธ์ง ์๊ฒ ๋๊ณ , ์ด๋ฅผ ํตํด ์ฝ๋ ์์ฑ, ์๋ฃํ ํ์ธ ๋ฑ์ ๋์์ด ๋ ์ ์์ผ๋ฏ๋ก ๊ถ์ฅ๋ฉ๋๋ค. <!-- <img src="/img/tutorial/dependencies/image02.png"> --> ## ์ฝ๋ ๋จ์ถ ๊ทธ๋ฌ๋ ์ฌ๊ธฐ `CommonQueryParams`๋ฅผ ๋ ๋ฒ์ด๋ ์์ฑํ๋, ์ฝ๋ ๋ฐ๋ณต์ด ์๋ค๋ ๊ฒ์ ์ ์ ์์ต๋๋ค: ```Python commons: CommonQueryParams = Depends(CommonQueryParams) ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} String getHttpFileuploadMaxSize(); default Long getHttpFileuploadMaxSizeAsLong() { final String value = getHttpFileuploadMaxSize(); return value != null ? DfTypeUtil.toLong(value) : null; } String getHttpFileuploadThresholdSize(); default Long getHttpFileuploadThresholdSizeAsLong() { final String value = getHttpFileuploadThresholdSize();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0) -
cmd/metacache-server-pool.go
// 3) Returning, with ID, stream from list. // // If we don't have a list id we must ask the server if it has a cache or create a new. if o.ID != "" && !o.Transient { // Create or ping with handout... rpc := globalNotificationSys.restClientFromHash(pathJoin(o.Bucket, o.Prefix)) var c *metacache if rpc == nil { resp := localMetacacheMgr.getBucket(ctx, o.Bucket).findCache(*o) c = &resp
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 16:23:16 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
// ------- @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse details(final String dictId, final int crudMode, final long id) { verifyCrudMode(crudMode, CrudMode.DETAILS, dictId); saveToken(); return asDetailsHtml().useForm(EditForm.class, op -> { op.setup(form -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 19.5K bytes - Viewed (0) -
docs/em/docs/tutorial/response-model.md
## ๐ โซ๏ธ ๐ฉบ ๐โ ๐ ๐ ๐ง ๐ฉบ, ๐ ๐ช โ ๐ ๐ข ๐ท & ๐ข ๐ท ๐ ๐ฏโโ๏ธ โ๏ธ ๐ซ ๐ ๐ป ๐: <img src="/img/tutorial/response-model/image01.png"> & ๐ฏโโ๏ธ ๐ท ๐ โ๏ธ ๐ ๐ ๏ธ ๐งพ: <img src="/img/tutorial/response-model/image02.png"> ## ๐ ๐จ ๐ โ ๐ค 5๏ธโฃ๐ ๐ผ ๐โ ๐ ๐จ ๐ณ ๐ ๐ซ โ Pydantic ๐ & ๐ โ โซ๏ธ ๐ข, ๐ด ๐ค ๐โ๐ฆบ ๐ ๐ญ (๐จโ๐จ, โ, โ๏ธ). ### ๐จ ๐จ ๐
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.8K bytes - Viewed (0) -
docs/de/docs/tutorial/query-params-str-validations.md
/// Die interaktive API-Dokumentation wird entsprechend aktualisiert und erlaubt jetzt mehrere Werte. <img src="/img/tutorial/query-params-str-validations/image02.png"> ### Query-Parameter-Liste / Mehrere Werte mit Defaults Und Sie kรถnnen auch eine Default-`list`e von Werten definieren, wenn keine รผbergeben werden: //// tab | Python 3.9+ ```Python hl_lines="9"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 27.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
// ------- @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse details(final String dictId, final int crudMode, final long id) { verifyCrudMode(crudMode, CrudMode.DETAILS, dictId); saveToken(); return asDetailsHtml().useForm(EditForm.class, op -> { op.setup(form -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
if (ComponentUtil.getFessConfig().isIncrementalCrawling()) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final long startTime = systemHelper.getCurrentTimeAsLong(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.6K bytes - Viewed (0)