Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 529 for unionOf (0.09 sec)

  1. docs/em/docs/tutorial/response-model.md

    ### ❌ πŸ“¨ πŸ†Ž ✍
    
    βœ‹οΈ πŸ•β” πŸ‘† πŸ“¨ 🎏 ❌ 🎚 πŸ‘ˆ 🚫 β˜‘ Pydantic πŸ†Ž (βœ… πŸ’½ 🎚) & πŸ‘† ✍ ⚫️ πŸ’– πŸ‘ˆ πŸ”’, FastAPI πŸ”œ πŸ”„ ✍ Pydantic πŸ“¨ 🏷 βšͺ️➑️ πŸ‘ˆ πŸ†Ž ✍, & πŸ”œ ❌.
    
    🎏 πŸ”œ πŸ”¨ πŸš₯ πŸ‘† βœ”οΈ πŸ•³ πŸ’– <abbr title='A union between multiple types means "any of these types".'>πŸ‡ͺπŸ‡Ί</abbr> πŸ–– 🎏 πŸ†Ž πŸŒβ” 1️⃣ βš–οΈ πŸŒ… πŸ‘« 🚫 β˜‘ Pydantic πŸ†Ž, πŸ–Ό πŸ‘‰ πŸ”œ ❌ πŸ‘Ά:
    
    //// tab | 🐍 3️⃣.6️⃣ &amp; πŸ”›
    
    ```Python hl_lines="10"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

    
            @Override
            public void decode_out ( NdrBuffer _src ) throws NdrException {
                int _infop = _src.dec_ndr_long();
                if ( _infop != 0 ) {
                    _src.dec_ndr_short(); /* union discriminant */
                    this.info.decode(_src);
    
                }
                this.retval = _src.dec_ndr_long();
            }
        }
    
        public static class LsarLookupSids extends DcerpcMessage {
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 35.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body-multiple-params.md

    As, by default, singular values are interpreted as query parameters, you don't have to explicitly add a `Query`, you can just do:
    
    ```Python
    q: Union[str, None] = None
    ```
    
    Or in Python 3.10 and above:
    
    ```Python
    q: str | None = None
    ```
    
    For example:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="28"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/body-multiple-params.md

    Da einfache Werte standardmÀßig als Query-Parameter interpretiert werden, müssen Sie `Query` nicht explizit hinzufügen, Sie kânnen einfach schreiben:
    
    ```Python
    q: Union[str, None] = None
    ```
    
    Oder in Python 3.10 und darΓΌber:
    
    ```Python
    q: str | None = None
    ```
    
    Zum Beispiel:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="27"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Graph.java

      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Graph.java

      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Network.java

      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

            }
    
    
            @Override
            public void decode ( NdrBuffer _src ) throws NdrException {
                _src.align(4);
                this.level = _src.dec_ndr_long();
                _src.dec_ndr_long(); /* union discriminant */
                int _ep = _src.dec_ndr_long();
    
                if ( _ep != 0 ) {
                    if ( this.e == null ) { /* YOYOYO */
                        this.e = new DfsEnumArray1();
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 16.4K bytes
    - Viewed (0)
  9. licenses/github.com/opencontainers/go-digest/LICENSE

          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Dec 16 22:26:43 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  10. licenses/github.com/docker/cli/LICENSE

          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 30 04:02:55 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top