- Sort Score
- Num 10 results
- Language All
Results 1161 - 1170 of 1,269 for Tool (0.04 seconds)
-
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
passage, not much larger than a rat-hole: she knelt down and looked along the passage into the loveliest garden you ever saw. How she longed to get out of that dark hall, and wander about among those beds of bright flowers and those cool fountains, but she could not even get her head though the doorway; `and even if my head would go through,' thought poor Alice, `it would be of very little use without my shoulders. Oh, how I wish
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Oct 29 21:35:03 GMT 2012 - 145.2K 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) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
).build() assertThat(client.retryOnConnectionFailure).isTrue() executeSynchronously("/").assertBody("seed connection pool") executeSynchronously("/").assertBody("retry success") // The call that seeds the connection pool. eventRecorder.removeUpToEvent(CallEnd::class.java) // The ResponseFailed event is not necessarily fatal!
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:02:18 GMT 2026 - 146.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java
* instance. This method is guaranteed to only be called once. * * <p>By default this returns a new {@link ScheduledExecutorService} with a single thread pool * that sets the name of the thread to the {@linkplain #serviceName() service name}. Also, the * pool will be {@linkplain ScheduledExecutorService#shutdown() shut down} when the service * {@linkplain Service.State#TERMINATED terminates} or {@linkplain Service.State#TERMINATEDCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 27.7K 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)