Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 441 for offerer (0.18 sec)

  1. docs_src/body_nested_models/tutorial007_py310.py

        tax: float | None = None
        tags: set[str] = set()
        images: list[Image] | None = None
    
    
    class Offer(BaseModel):
        name: str
        description: str | None = None
        price: float
        items: list[Item]
    
    
    @app.post("/offers/")
    async def create_offer(offer: Offer):
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Jan 07 14:11:31 GMT 2022
    - 520 bytes
    - Viewed (0)
  2. docs_src/body_nested_models/tutorial007_py39.py

        tax: Union[float, None] = None
        tags: set[str] = set()
        images: Union[list[Image], None] = None
    
    
    class Offer(BaseModel):
        name: str
        description: Union[str, None] = None
        price: float
        items: list[Item]
    
    
    @app.post("/offers/")
    async def create_offer(offer: Offer):
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 570 bytes
    - Viewed (0)
  3. architecture/networking/controllers.md

    **`kclient.Client`** is a higher level wrapper around a Kubernetes resource, and is built up of sub-parts `kclient.Reader`, `kclient.Writer`, and `kclient.Informer`.
    Typically, the whole `kclient.Client` is used,though.
    
    Functionality offered by `kclient` includes:
    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  4. docs_src/body_nested_models/tutorial007.py

        tax: Union[float, None] = None
        tags: Set[str] = set()
        images: Union[List[Image], None] = None
    
    
    class Offer(BaseModel):
        name: str
        description: Union[str, None] = None
        price: float
        items: List[Item]
    
    
    @app.post("/offers/")
    async def create_offer(offer: Offer):
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 581 bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TopKSelector.java

       */
      public void offerAll(Iterator<? extends T> elements) {
        while (elements.hasNext()) {
          offer(elements.next());
        }
      }
    
      /**
       * Returns the top {@code k} elements offered to this {@code TopKSelector}, or all elements if
       * fewer than {@code k} have been offered, in the order specified by the factory used to create
       * this {@code TopKSelector}.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    including direct, indirect, special, incidental and consequential damages,
    such as lost profits;
    
    iii) states that any provisions which differ from this Agreement are offered
    by that Contributor alone and not by any other party; and
    
    iv) states that source code for the Program is available from such Contributor,
    and informs licensees how to obtain it in a reasonable manner on or through
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         You may choose to offer, and to charge a fee for, warranty, support,
         indemnity or liability obligations to one or more recipients of Covered
         Software. However, You may do so only on Your own behalf, and not on
         behalf of any Contributor. You must make it absolutely clear that any
         such warranty, support, indemnity, or liability obligation is offered by
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/go-multierror/LICENSE

         You may choose to offer, and to charge a fee for, warranty, support,
         indemnity or liability obligations to one or more recipients of Covered
         Software. However, You may do so only on Your own behalf, and not on behalf
         of any Contributor. You must make it absolutely clear that any such
         warranty, support, indemnity, or liability obligation is offered by You
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/errwrap/LICENSE

         You may choose to offer, and to charge a fee for, warranty, support,
         indemnity or liability obligations to one or more recipients of Covered
         Software. However, You may do so only on Your own behalf, and not on behalf
         of any Contributor. You must make it absolutely clear that any such
         warranty, support, indemnity, or liability obligation is offered by You
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/hcl/LICENSE

         You may choose to offer, and to charge a fee for, warranty, support,
         indemnity or liability obligations to one or more recipients of Covered
         Software. However, You may do so only on Your own behalf, and not on behalf
         of any Contributor. You must make it absolutely clear that any such
         warranty, support, indemnity, or liability obligation is offered by You
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
Back to top