Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,105 for notes (0.15 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    John Howard <******@****.***> 1702437816 -0800
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Dec 13 03:23:36 GMT 2023
    - 4K bytes
    - Viewed (0)
  2. manifests/charts/gateway/templates/NOTES.txt

    zirain <******@****.***> 1713320861 +0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 02:27:41 GMT 2024
    - 452 bytes
    - Viewed (0)
  3. manifests/charts/base/templates/NOTES.txt

    zirain <******@****.***> 1713320861 +0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 02:27:41 GMT 2024
    - 203 bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/NOTES.txt

    zirain <******@****.***> 1713320861 +0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 02:27:41 GMT 2024
    - 214 bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
        Note over client,tasks: Can raise exception for dependency, handled after response is sent
        Note over client,operation: Can raise HTTPException and can change the response
        client ->> dep: Start request
        Note over dep: Run code up to yield
        opt raise
            dep -->> handler: Raise HTTPException
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Apr 19 19:30:49 GMT 2024
    - 384.6K bytes
    - Viewed (1)
  6. CHANGELOG/OWNERS

      - AuraSinis # 1.24 Release Notes Lead
      - cici37 # 1.23 Release Notes Lead
      - csantanapr # 1.25 Release Notes Lead
      - harshanarayana # 1.27 Release Notes Lead
      - ramrodo # 1.26 Release Notes Lead
      - sanchita-07 # 1.28 Release Notes Lead
      - fsmunoz # 1.29 Release Notes Lead
      - rashansmith # 1.30 Release Notes Lead
    reviewers:
      - release-managers
      - fykaa # 1.30 Release Notes Shadow
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jan 24 16:11:28 GMT 2024
    - 801 bytes
    - Viewed (0)
  7. tests/test_tutorial/test_async_sql_databases/test_tutorial001.py

        with TestClient(app) as client:
            note = {"text": "Foo bar", "completed": False}
            response = client.post("/notes/", json=note)
            assert response.status_code == 200, response.text
            data = response.json()
            assert data["text"] == note["text"]
            assert data["completed"] == note["completed"]
            assert "id" in data
            response = client.get("/notes/")
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Wed Oct 18 12:36:40 GMT 2023
    - 6K bytes
    - Viewed (0)
  8. doc/README.md

    # Release Notes
    
    The `initial` and `next` subdirectories of this directory are for release notes.
    
    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating new files.
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Apr 10 19:41:39 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/async-sql-encode-databases.md

    !!! note
        Notice that as we communicate with the database using `await`, the *path operation function* is declared with `async`.
    
    ### About `{**note.dict(), "id": last_record_id}`
    
    `note` is a Pydantic `Note` object.
    
    `note.dict()` returns a `dict` with its data, something like:
    
    ```Python
    {
        "text": "Some note",
        "completed": False,
    }
    ```
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  10. .github/workflows/CheckBadMerge.groovy

    class CheckBadMerge {
        private static final THREAD_POOL = Executors.newCachedThreadPool()
    
        private static final List<String> MONITORED_FILES = [
            "subprojects/docs/src/docs/release/notes.md",
            "platforms/documentation/docs/src/docs/release/notes.md",
            "subprojects/launcher/src/main/resources/release-features.txt",
            "platforms/core-runtime/launcher/src/main/resources/release-features.txt"
        ]
    
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top