- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 457 for rsync (0.34 sec)
-
api/go1.17.txt
pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Value() interface{} pkg runtime/cgo (openbsd-amd64-cgo), type Handle uintptr pkg strconv, func QuotedPrefix(string) (string, error) pkg sync/atomic, method (*Value) CompareAndSwap(interface{}, interface{}) bool pkg sync/atomic, method (*Value) Swap(interface{}) interface{} pkg syscall (netbsd-386), const SYS_WAIT6 = 481 pkg syscall (netbsd-386), const SYS_WAIT6 ideal-int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 18K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
The code following the `yield` statement is executed after creating the response but before sending it: {* ../../docs_src/dependencies/tutorial007.py hl[5:6] *} /// tip You can use `async` or regular functions. **FastAPI** will do the right thing with each, the same as with normal dependencies. /// ## A dependency with `yield` and `try` { #a-dependency-with-yield-and-try }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0) -
cmd/os_other.go
remaining-- } } } return entries, nil } func globalSync() { // no-op not sure about plan9/solaris support for syscall support defer globalOSMetrics.time(osMetricSync)() syscall.Sync()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 4K bytes - Viewed (0) -
cmd/admin-handlers-users-race_test.go
package cmd import ( "context" "fmt" "runtime" "testing" "time" "github.com/minio/madmin-go/v3" minio "github.com/minio/minio-go/v7" "github.com/minio/pkg/v3/sync/errgroup" ) func runAllIAMConcurrencyTests(suite *TestSuiteIAM, c *check) { suite.SetUpSuite(c) suite.TestDeleteUserRace(c) suite.TearDownSuite(c) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/dependencies-with-yield.md
El código posterior a la declaración `yield` se ejecuta después de crear el response pero antes de enviarla: {* ../../docs_src/dependencies/tutorial007.py hl[5:6] *} /// tip | Consejo Puedes usar funciones `async` o regulares. **FastAPI** hará lo correcto con cada una, igual que con dependencias normales. /// ## Una dependencia con `yield` y `try`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 13K bytes - Viewed (0) -
api/go1.15.txt
pkg os, var ErrDeadlineExceeded error pkg regexp, method (*Regexp) SubexpIndex(string) int pkg strconv, func FormatComplex(complex128, uint8, int, int) string pkg strconv, func ParseComplex(string, int) (complex128, error) pkg sync, method (*Map) LoadAndDelete(interface{}) (interface{}, bool) pkg testing, method (*B) TempDir() string pkg testing, method (*T) Deadline() (time.Time, bool) pkg testing, method (*T) TempDir() string
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Jul 17 02:15:01 UTC 2020 - 7.6K bytes - Viewed (0) -
docs/en/data/topic_repos.yml
stars: 1150 owner_login: wassim249 owner_html_url: https://github.com/wassim249 - name: fastapi-alembic-sqlmodel-async html_url: https://github.com/jonra1993/fastapi-alembic-sqlmodel-async stars: 1145 owner_login: jonra1993 owner_html_url: https://github.com/jonra1993 - name: odmantic html_url: https://github.com/art049/odmantic stars: 1130
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:57:41 UTC 2025 - 15.8K bytes - Viewed (0) -
docs/es/llm-prompt.md
* full stack: full stack (do not translate to "pila completa") * full-stack: full-stack (do not translate to "de pila completa") * stack: stack (do not translate to "pila") * loop (as in async loop): loop (do not translate to "bucle" or "ciclo") * hard dependencies: dependencias obligatorias (do not translate to "dependencias duras") * locking: locking (do not translate to "bloqueo")
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 18:57:50 UTC 2025 - 5.3K bytes - Viewed (0) -
tests/associations_many2many_test.go
package tests_test import ( "fmt" "sync" "testing" "gorm.io/gorm" "gorm.io/gorm/clause" . "gorm.io/gorm/utils/tests" ) func TestMany2ManyAssociation(t *testing.T) { user := *GetUser("many2many", Config{Languages: 2}) if err := DB.Create(&user).Error; err != nil { t.Fatalf("errors happened when create: %v", err) } CheckUser(t, user, user) // Find var user2 User
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sat Jun 10 13:05:19 UTC 2023 - 13.2K bytes - Viewed (0) -
tests/lru_test.go
package tests_test import ( "crypto/rand" "fmt" "gorm.io/gorm/internal/lru" "math" "math/big" "reflect" "sync" "testing" "time" ) func TestLRU_Add_ExistingKey_UpdatesValueAndExpiresAt(t *testing.T) { lru := lru.NewLRU[string, int](10, nil, time.Hour) lru.Add("key1", 1) lru.Add("key1", 2) if value, ok := lru.Get("key1"); !ok || value != 2 { t.Errorf("Expected value to be updated to 2, got %v", value)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0)