Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for 26 (0.17 sec)

  1. docs/de/docs/how-to/extending-openapi.md

    Es wird nur einmal generiert und dann wird dasselbe zwischengespeicherte Schema für die nächsten Requests verwendet.
    
    ```Python hl_lines="13-14  25-26"
    {!../../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### Die Methode überschreiben
    
    Jetzt können Sie die Methode `.openapi()` durch Ihre neue Funktion ersetzen.
    
    ```Python hl_lines="29"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 14 16:44:05 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/schema-extra-example.md

    === "Python 3.10+ Pydantic v1"
    
        ```Python hl_lines="13-23"
        {!> ../../../docs_src/schema_extra_example/tutorial001_py310_pv1.py!}
        ```
    
    === "Python 3.8+ Pydantic v2"
    
        ```Python hl_lines="15-26"
        {!> ../../../docs_src/schema_extra_example/tutorial001.py!}
        ```
    
    === "Python 3.8+ Pydantic v1"
    
        ```Python hl_lines="15-25"
        {!> ../../../docs_src/schema_extra_example/tutorial001_pv1.py!}
        ```
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Feb 09 12:35:46 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/UUID.java

            clock_seq_hi_and_reserved = B(hex_to_bin(arr, 19, 2));
            clock_seq_low = B(hex_to_bin(arr, 21, 2));
            node = new byte[6];
            node[0] = B(hex_to_bin(arr, 24, 2));
            node[1] = B(hex_to_bin(arr, 26, 2));
            node[2] = B(hex_to_bin(arr, 28, 2));
            node[3] = B(hex_to_bin(arr, 30, 2));
            node[4] = B(hex_to_bin(arr, 32, 2));
            node[5] = B(hex_to_bin(arr, 34, 2));
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.1K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/graphql.md

    Hier ist eine kleine Vorschau, wie Sie Strawberry mit FastAPI integrieren können:
    
    ```Python hl_lines="3  22  25-26"
    {!../../../docs_src/graphql/tutorial001.py!}
    ```
    
    Weitere Informationen zu Strawberry finden Sie in der <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry-Dokumentation</a>.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:18:31 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/graphql.md

    Here's a small preview of how you could integrate Strawberry with FastAPI:
    
    ```Python hl_lines="3  22  25-26"
    {!../../../docs_src/graphql/tutorial001.py!}
    ```
    
    You can learn more about Strawberry in the <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry documentation</a>.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 19 19:54:04 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

      }
    
      private static long remix(long h) {
        h ^= h >>> 41;
        h *= 949921979;
        return h;
      }
    
      private static byte getChar(long h) {
        return (byte) ('a' + ((h & 0xfffff) % 26));
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Jul 19 14:00:24 GMT 2016
    - 6.2K bytes
    - Viewed (0)
  7. docs/sts/client-grants.md

        </AssumedRoleUser>
        <Credentials>
          <AccessKeyId>Y4RJU1RNFGK48LGO9I2S</AccessKeyId>
          <SecretAccessKey>sYLRKS1Z7hSjluf6gEbb9066hnx315wHTiACPAjg</SecretAccessKey>
          <Expiration>2019-08-08T20:26:12Z</Expiration>
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 7.2K bytes
    - Viewed (1)
  8. api/go1.6.txt

    pkg debug/elf, const COMPRESS_ZLIB = 1
    pkg debug/elf, const COMPRESS_ZLIB CompressionType
    pkg debug/elf, const R_MIPS_16 = 1
    pkg debug/elf, const R_MIPS_16 R_MIPS
    pkg debug/elf, const R_MIPS_26 = 4
    pkg debug/elf, const R_MIPS_26 R_MIPS
    pkg debug/elf, const R_MIPS_32 = 2
    pkg debug/elf, const R_MIPS_32 R_MIPS
    pkg debug/elf, const R_MIPS_64 = 18
    pkg debug/elf, const R_MIPS_64 R_MIPS
    pkg debug/elf, const R_MIPS_ADD_IMMEDIATE = 34
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/UUID.java

            this.clock_seq_low = B(hex_to_bin(arr, 21, 2));
            this.node = new byte[6];
            this.node[ 0 ] = B(hex_to_bin(arr, 24, 2));
            this.node[ 1 ] = B(hex_to_bin(arr, 26, 2));
            this.node[ 2 ] = B(hex_to_bin(arr, 28, 2));
            this.node[ 3 ] = B(hex_to_bin(arr, 30, 2));
            this.node[ 4 ] = B(hex_to_bin(arr, 32, 2));
            this.node[ 5 ] = B(hex_to_bin(arr, 34, 2));
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
    travelchannel
    
    // travelers : 2015-03-26 Travelers TLD, LLC
    travelers
    
    // travelersinsurance : 2015-03-26 Travelers TLD, LLC
    travelersinsurance
    
    // trust : 2014-10-16 Internet Naming Company LLC
    trust
    
    // trv : 2015-03-26 Travelers TLD, LLC
    trv
    
    // tube : 2015-06-11 Latin American Telecom LLC
    tube
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top