Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1091 - 1100 of 1,250 for pool (0.23 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top