- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 451 for rsync (0.02 sec)
-
docs/em/docs/tutorial/testing.md
/// tip ๐ ๐ ๐ฌ ๐ข ๐ `def`, ๐ซ `async def`. & ๐ค ๐ฉโ๐ป ๐ ๐ค, ๐ซ โ๏ธ `await`. ๐ โ ๐ โ๏ธ `pytest` ๐ ๐ต ๐คข. /// /// note | ๐ก โน ๐ ๐ช โ๏ธ `from starlette.testclient import TestClient`. **FastAPI** ๐ ๐ `starlette.testclient` `fastapi.testclient` ๐ช ๐, ๐ฉโ๐ป. โ๏ธ โซ๏ธ ๐ ๐ โช๏ธโก๏ธ ๐. /// /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/em/docs/advanced/events.md
**๐ ๐จโ๐ผ** ๐ ๐ณ ๐ ๐ ๐ช โ๏ธ `with` ๐, ๐ผ, `open()` ๐ช โ๏ธ ๐ ๐จโ๐ผ: ```Python with open("file.txt") as file: file.read() ``` โฎ๏ธ โฌ ๐, ๐ค **๐ ๐ ๐จโ๐ผ**. ๐ ๐ โ๏ธ โซ๏ธ โฎ๏ธ `async with`: ```Python async with lifespan(app): await do_stuff() ``` ๐โ ๐ โ ๐ ๐จโ๐ผ โ๏ธ ๐ ๐ ๐จโ๐ผ ๐ ๐, โซ๏ธโ โซ๏ธ ๐จ ๐, โญ ๐ฌ `with` ๐ซ, โซ๏ธ ๐ ๐ ๏ธ ๐ โญ `yield`, & โฎ๏ธ โ `with` ๐ซ, โซ๏ธ ๐ ๐ ๏ธ ๐ โฎ๏ธ `yield`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java
when(request.allowChain(any())).thenReturn(true); // When boolean async = request.isResponseAsync(); int size = request.size(); Integer timeout = request.getOverrideTimeout(); boolean canChain = request.allowChain(nextRequest); // Then assertTrue(async); assertEquals(100, size); assertEquals(3000, timeout); assertTrue(canChain);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/request_files.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0) -
docs/ru/docs/index.md
<details markdown="1"> <summary>ะะปะธ ะธัะฟะพะปัะทัะนัะต <code>async def</code>...</summary> ะัะปะธ ะฒะฐั ะบะพะด ะธัะฟะพะปัะทัะตั `async` / `await`, ะธัะฟะพะปัะทัะนัะต `async def`: ```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}")
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 25.8K bytes - Viewed (0) -
schema/index_test.go
package schema_test import ( "sync" "testing" "gorm.io/gorm/schema" "gorm.io/gorm/utils/tests" ) type UserIndex struct { Name string `gorm:"index"` Name2 string `gorm:"index:idx_name,unique"` Name3 string `gorm:"index:,sort:desc,collate:utf8,type:btree,length:10,where:name3 != 'jinzhu'"` Name4 string `gorm:"uniqueIndex"`
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Dec 06 02:27:44 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/index.md
์ด๋ ํนํ **๋ง์ *๊ฒฝ๋ก ์๋***์์ **๊ฐ์ ์์กด์ฑ**์ ๊ณ์ํด์ ์ฌ์ฉํ๋ **๊ฑฐ๋ ์ฝ๋ ๊ธฐ๋ฐ**์์์ ์ฌ์ฉํ๋ฉด ์ ์ฉํ ๊ฒ์ ๋๋ค. ## `async`ํ๊ฒ, ํน์ `async`ํ์ง ์๊ฒ ์์กด์ฑ์ด (*๊ฒฝ๋ก ์๋ ํจ์*์์ ์ฒ๋ผ ๋๊ฐ์ด) **FastAPI**์ ์ํด ํธ์ถ๋ ์ ์์ผ๋ฉฐ, ํจ์๋ฅผ ์ ์ํ ๋ ๋์ผํ ๊ท์น์ด ์ ์ฉ๋ฉ๋๋ค. `async def`์ ์ฌ์ฉํ๊ฑฐ๋ ํน์ ์ผ๋ฐ์ ์ธ `def`๋ฅผ ์ฌ์ฉํ ์ ์์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ ์ผ๋ฐ์ ์ธ `def` *๊ฒฝ๋ก ์๋ ํจ์* ์์ `async def`๋ก ์์กด์ฑ์ ์ ์ธํ ์ ์์ผ๋ฉฐ, `async def` *๊ฒฝ๋ก ์๋ ํจ์* ์์ `def`๋ก ์์กด์ฑ์ ์ ์ธํ๋ ๋ฑ์ ๋ฐฉ๋ฒ์ด ์์ต๋๋ค. ์๋ฌด ๋ฌธ์ ์์ต๋๋ค. **FastAPI**๋ ๋ฌด์์ ํ ์ง ์๊ณ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 11.1K bytes - Viewed (0) -
cmd/metrics-v3-cluster-iam.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "sync/atomic" "time" ) const ( lastSyncDurationMillis = "last_sync_duration_millis" pluginAuthnServiceFailedRequestsMinute = "plugin_authn_service_failed_requests_minute"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu May 02 08:20:42 UTC 2024 - 4.5K bytes - Viewed (0) -
schema/callbacks_test.go
package schema_test import ( "reflect" "sync" "testing" "gorm.io/gorm" "gorm.io/gorm/schema" ) type UserWithCallback struct{} func (UserWithCallback) BeforeSave(*gorm.DB) error { return nil } func (UserWithCallback) AfterCreate(*gorm.DB) error { return nil } func TestCallback(t *testing.T) { user, err := schema.Parse(&UserWithCallback{}, &sync.Map{}, schema.NamingStrategy{}) if err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 939 bytes - Viewed (0) -
docs/ko/docs/tutorial/testing.md
**FastAPI** ๋ ๊ฐ๋ฐ์์ ํธ์๋ฅผ ์ํด `starlette.testclient` ๋ฅผ `fastapi.testclient` ๋ก๋ ์ ๊ณตํ ๋ฟ์ ๋๋ค. ์ด๋ ๋จ์ง `Starlette` ์์ ์ง์ ๊ฐ์ ธ์ค๋์ง์ ์ฐจ์ด์ผ ๋ฟ์ ๋๋ค. /// /// tip | ํ FastAPI ์ ํ๋ฆฌ์ผ์ด์ ์ ์์ฒญ์ ๋ณด๋ด๋ ๊ฒ ์ธ์๋ ํ ์คํธ์์ `async` ํจ์๋ฅผ ํธ์ถํ๊ณ ์ถ๋ค๋ฉด (์: ๋น๋๊ธฐ ๋ฐ์ดํฐ๋ฒ ์ด์ค ํจ์), ์ฌํ ํํ ๋ฆฌ์ผ์ [Async Tests](../advanced/async-tests.md){.internal-link target=_blank} ๋ฅผ ์ฐธ์กฐํ์ธ์. /// ## ํ ์คํธ ๋ถ๋ฆฌํ๊ธฐ ์ค์ ์ ํ๋ฆฌ์ผ์ด์ ์์๋ ํ ์คํธ๋ฅผ ๋ณ๋์ ํ์ผ๋ก ๋๋๋ ๊ฒฝ์ฐ๊ฐ ๋ง์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ **FastAPI** ์ ํ๋ฆฌ์ผ์ด์ ๋ ์ฌ๋ฌ ํ์ผ์ด๋ ๋ชจ๋ ๋ฑ์ผ๋ก ๊ตฌ์ฑ๋ ์ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 11:24:48 UTC 2024 - 7.6K bytes - Viewed (0)