- Sort Score
- Num 10 results
- Language All
Results 1091 - 1100 of 1,250 for pool (0.03 seconds)
-
tests/test_openapi_separate_input_output_schemas.py
class WithComputedField(BaseModel): name: str @computed_field @property def computed_field(self) -> str: return f"computed {self.name}" def get_app_client(separate_input_output_schemas: bool = True) -> TestClient: app = FastAPI(separate_input_output_schemas=separate_input_output_schemas) @app.post("/items/", responses={402: {"model": Item}}) def create_item(item: Item) -> Item: return item
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 27.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
} private static <K, V> void assertNotificationEnqueued(LocalCache<K, V> map, K key, V value) { RemovalNotification<K, V> notification = map.removalNotificationQueue.poll(); assertThat(notification.getKey()).isSameInstanceAs(key); assertThat(notification.getValue()).isSameInstanceAs(value); } // Segment eviction tests
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 114.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
} private static <K, V> void assertNotificationEnqueued(LocalCache<K, V> map, K key, V value) { RemovalNotification<K, V> notification = map.removalNotificationQueue.poll(); assertThat(notification.getKey()).isSameInstanceAs(key); assertThat(notification.getValue()).isSameInstanceAs(value); } // Segment eviction tests
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 116.4K bytes - Click Count (0) -
docs/en/docs/management-tasks.md
This section is useful only to a handful of people, team members with permissions to manage the repository. You can probably skip it. π /// ...so, you are a [team member of FastAPI](./fastapi-people.md#team)? Wow, you are so cool! π You can help with everything on [Help FastAPI - Get Help](./help-fastapi.md) the same ways as external contributors. But additionally, there are some tasks that only you (as part of the team) can perform.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:59:26 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/path-params.md
μ΄μ λ§μ°¬κ°μ§λ‘ λ€μν μΈμ΄μ λν μ½λ μμ± λꡬλ₯Ό ν¬ν¨νμ¬ μ¬λ¬ νΈνλλ λκ΅¬κ° μμ΅λλ€. ## Pydantic { #pydantic } λͺ¨λ λ°μ΄ν° κ²μ¦μ [Pydantic](https://docs.pydantic.dev/)μ μν΄ λ΄λΆμ μΌλ‘ μνλλ―λ‘ μ΄λ‘ μΈν μ΄μ μ λͺ¨λ μ»μ μ μμ΅λλ€. μ¬λ¬λΆμ κ΄λ¦¬λ₯Ό μ λ°κ³ μμμ λλ μ μμ΅λλ€. `str`, `float`, `bool`, κ·Έλ¦¬κ³ λ€λ₯Έ μ¬λ¬ 볡μ‘ν λ°μ΄ν° νμ μ μΈμ ν μ μμ΅λλ€. μ΄ μ€ λͺ κ°μ§λ μμ΅μμ λ€μ μ₯μ μ€λͺ λμ΄ μμ΅λλ€. ## μμ λ¬Έμ { #order-matters } *κ²½λ‘ μ²λ¦¬*λ₯Ό λ§λ€ λ κ³ μ κ²½λ‘λ₯Ό κ°κ³ μλ μν©λ€μ λ§λ₯λ¨λ¦΄ μ μμ΅λλ€. `/users/me`μ²λΌ, νμ¬ μ¬μ©μμ λ°μ΄ν°λ₯Ό κ°μ Έμ¨λ€κ³ ν©μλ€.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9.9K bytes - Click Count (0) -
scripts/translate.py
github_token: Annotated[str, typer.Option(envvar="GITHUB_TOKEN")], github_repository: Annotated[str, typer.Option(envvar="GITHUB_REPOSITORY")], commit_in_place: Annotated[ bool, typer.Option(envvar="COMMIT_IN_PLACE", show_default=True) ] = False, ) -> None: print("Setting up GitHub Actions git user") repo = git.Repo(Path(__file__).absolute().parent.parent)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:37:41 GMT 2026 - 15.8K bytes - Click Count (0) -
tests/associations_test.go
// Verify codes exist var langs []Language if err := DB.Model(&user).Association("Languages").Find(&langs); err != nil { t.Fatalf("find languages: %v", err) } codeSet := map[string]bool{} for _, l := range langs { codeSet[l.Code] = true } for _, c := range []string{"am2m_map_1", "am2m_map_2", "am2m_map_3"} { if !codeSet[c] { t.Fatalf("expected language code %s present", c) } }
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Fri Sep 12 04:33:27 GMT 2025 - 13.3K bytes - Click Count (0) -
src/archive/tar/writer.go
}) } // splitUSTARPath splits a path according to USTAR prefix and suffix rules. // If the path is not splittable, then it will return ("", "", false). func splitUSTARPath(name string) (prefix, suffix string, ok bool) { length := len(name) if length <= nameSize || !isASCII(name) { return "", "", false } else if length > prefixSize+1 { length = prefixSize + 1 } else if name[length-1] == '/' { length-- }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Feb 03 16:38:43 GMT 2025 - 19.7K bytes - Click Count (0) -
src/archive/tar/tar_test.go
} f.pos += s f.ops = f.ops[1:] return f.pos, nil } func TestSparseEntries(t *testing.T) { vectors := []struct { in []sparseEntry size int64 wantValid bool // Result of validateSparseEntries wantAligned []sparseEntry // Result of alignSparseEntries wantInverted []sparseEntry // Result of invertSparseEntries }{{ in: []sparseEntry{}, size: 0,
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 25 00:25:45 GMT 2024 - 23.9K bytes - Click Count (0) -
src/archive/zip/reader_test.go
Comment string File []ZipTestFile Obscured bool // needed for Apple notarization (golang.org/issue/34986) Error error // the error that Opening this file should return } type ZipTestFile struct { Name string Mode fs.FileMode NonUTF8 bool ModTime time.Time Modified time.Time // Information describing expected zip file content.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 15 18:35:56 GMT 2026 - 57.9K bytes - Click Count (0)