- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 457 for rsync (0.55 sec)
-
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
} } else { log.warn("Async notify failed: {}", message.getErrorMessage()); } return null; } catch (Exception e) { throw new IOException("Witness async notify RPC failed", e); } } /** * Generates a registration ID from context handle and share name.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
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) -
doc/go_mem.html
w() <-limit }(w) } select{} } </pre> <h3 id="locks">Locks</h3> <p> The <code>sync</code> package implements two lock data types, <code>sync.Mutex</code> and <code>sync.RWMutex</code>. </p> <p class="rule"> For any <code>sync.Mutex</code> or <code>sync.RWMutex</code> variable <code>l</code> and <i>n</i> < <i>m</i>,
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 15:41:37 UTC 2025 - 26.6K 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) -
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) -
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/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) -
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) -
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) -
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)