Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for nines (0.14 seconds)

  1. scripts/add_latest_release_date.py

    RELEASE_NOTES_FILE = "docs/en/docs/release-notes.md"
    RELEASE_HEADER_PATTERN = re.compile(r"^## (\d+\.\d+\.\d+)\s*(\(.*\))?\s*$")
    
    
    def main() -> None:
        with open(RELEASE_NOTES_FILE) as f:
            lines = f.readlines()
    
        for i, line in enumerate(lines):
            match = RELEASE_HEADER_PATTERN.match(line)
            if not match:
                continue
    
            version = match.group(1)
            date_part = match.group(2)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:06:36 GMT 2026
    - 1023 bytes
    - Click Count (0)
  2. .teamcity/scripts/CheckBadMerge.java

        }
    
        private static List<String> branchesOf(String commit) throws IOException, InterruptedException, ExecutionException {
            List<String> lines = getStdoutLines(new String[] {"git", "branch", "-r", "--contains", commit});
            List<String> out = new ArrayList<>();
            for (String line : lines) {
                String s = line.replace("*", "").trim();
                if (!s.isEmpty()) {
                    out.add(s);
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  3. .github/pull_request_template.md

    - [ ] Run `mvn verify` to make sure basic checks pass.
      A more thorough check will be performed on your pull request automatically.
    - [ ] You have run the [Core IT][core-its] successfully.
    
    If your pull request is about ~20 lines of code you don't need to sign an
    [Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf) if you are unsure
    please ask on the developers list.
    
    To make clear that you license your contribution under
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Apr 01 17:30:11 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  4. docs/en/mkdocs.yml

          - tutorial/security/oauth2-jwt.md
        - tutorial/middleware.md
        - tutorial/cors.md
        - tutorial/sql-databases.md
        - tutorial/bigger-applications.md
        - tutorial/stream-json-lines.md
        - tutorial/server-sent-events.md
        - tutorial/background-tasks.md
        - tutorial/metadata.md
        - tutorial/static-files.md
        - tutorial/testing.md
        - tutorial/debugging.md
      - Advanced User Guide:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  5. docs/en/docs/release-notes.md

    ### Features
    
    * ✨ Add support for streaming JSON Lines and binary data with `yield`. PR [#15022](https://github.com/fastapi/fastapi/pull/15022) by [@tiangolo](https://github.com/tiangolo).
        * This also upgrades Starlette from `>=0.40.0` to `>=0.46.0`, as it's needed to properly unrwap and re-raise exceptions from exception groups.
        * New docs: [Stream JSON Lines](https://fastapi.tiangolo.com/tutorial/stream-json-lines/).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top