Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for open0 (0.53 seconds)

  1. scripts/add_latest_release_date.py

    import re
    import sys
    from datetime import date
    
    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
    
    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. .github/pull_request_template.md

    <!--
    Please open pull requests against one of the following branches:
    
    - master — default target for all changes (new features + bug fixes).  
      If the change should also go to maven-4.0.x, request a backport in the PR.
    
    - maven-3.10.x — target for 3.x changes (new features + bug fixes).  
      If the change should also go to maven-3.9.x, request a backport in the PR.
      maven-3.9.x should receive only serious bug fixes, as it is approaching EOL.
    
    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)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          closeables.close();
        }
    
        void becomeSubsumedInto(CloseableList otherCloseables) {
          checkAndUpdateStatus(OPEN, SUBSUMED);
          otherCloseables.add(closeables, directExecutor());
        }
    
        FluentFuture<V> finishToFuture() {
          if (compareAndUpdateStatus(OPEN, WILL_CLOSE)) {
            logger.get().log(FINER, "will close {0}", closingFutureToString());
            future.addListener(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
  4. docs/en/data/topic_repos.yml

    - name: langchain-extract
      html_url: https://github.com/langchain-ai/langchain-extract
      stars: 1193
      owner_login: langchain-ai
      owner_html_url: https://github.com/langchain-ai
    - name: open-wearables
      html_url: https://github.com/the-momentum/open-wearables
      stars: 1170
      owner_login: the-momentum
      owner_html_url: https://github.com/the-momentum
    - name: odmantic
      html_url: https://github.com/art049/odmantic
      stars: 1168
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 12:36:41 GMT 2026
    - 16K bytes
    - Click Count (0)
  5. fastapi/applications.py

                    different domains and you want to use the same Swagger UI in the
                    browser to interact with each of them (instead of having multiple
                    browser tabs open). Or if you want to leave fixed the possible URLs.
    
                    If the servers `list` is not provided, or is an empty `list`, the
                    `servers` property in the generated OpenAPI will be:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
  6. docs/en/docs/release-notes.md

        * It's now possible to use [Starlette's `StreamingResponse`](https://www.starlette.dev/responses/#streamingresponse) with iterators, like [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) objects (as those returned by `open()`).
        * It's now possible to use the low level utility `iterate_in_threadpool` from `starlette.concurrency` (for advanced scenarios).
        * PR [#243](https://github.com/tiangolo/fastapi/pull/243).
    
    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