Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for First (0.14 sec)

  1. docs/pt/docs/tutorial/first-steps.md

    ```Python hl_lines="7"
    {!../../../docs_src/first_steps/tutorial003.py!}
    ```
    
    !!! note "Nota"
        Se vocรช nรฃo sabe a diferenรงa, verifique o [Async: *"Com pressa?"*](../async.md#com-pressa){.internal-link target=_blank}.
    
    ### Passo 5: retorne o conteรบdo
    
    ```Python hl_lines="8"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/first-steps.md

    # Security - First Steps
    
    Let's imagine that you have your **backend** API in some domain.
    
    And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application).
    
    And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**.
    
    We can use **OAuth2** to build that with **FastAPI**.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/security/first-steps.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/security/first-steps.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/security/first-steps.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/first-steps.md

    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI` ๐Ÿ ๐ŸŽ“ ๐Ÿ‘ˆ ๐Ÿšš ๐ŸŒ ๐Ÿ› ๏ธ ๐Ÿ‘† ๐Ÿ› ๏ธ.
    
    !!! note "๐Ÿ“ก โ„น"
        `FastAPI` ๐ŸŽ“ ๐Ÿ‘ˆ ๐Ÿ˜– ๐Ÿ”— โšช๏ธโžก๏ธ `Starlette`.
    
        ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐ŸŒ <a href="https://www.starlette.io/" class="external-link" target="_blank">๐Ÿ’ƒ</a> ๐Ÿ› ๏ธ โฎ๏ธ `FastAPI` ๐Ÿ’โ€โ™‚๏ธ.
    
    ### ๐Ÿ” 2๏ธโƒฃ: โœ `FastAPI` "๐Ÿ‘"
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RegularContiguousSet.java

      @Override
      public UnmodifiableIterator<C> descendingIterator() {
        return new AbstractSequentialIterator<C>(last()) {
          final C first = first();
    
          @Override
          @CheckForNull
          protected C computeNext(C previous) {
            return equalsOrThrow(previous, first) ? null : domain.previous(previous);
          }
        };
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java

        @Override
        public int compare(@Nullable String first, @Nullable String second) {
          if (first == second) {
            return 0;
          } else if (first == null) {
            return -1;
          } else if (second == null) {
            return 1;
          } else if (first.length() != second.length()) {
            return first.length() - second.length();
          } else {
            return first.compareTo(second);
          }
        }
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/Pair.java

            return new Pair<>(first, second);
        }
    
        /**
         * ใ‚คใƒณใ‚นใ‚ฟใƒณใ‚นใ‚’ๆง‹็ฏ‰ใ—ใพใ™ใ€‚
         */
        public Pair() {
        }
    
        /**
         * ใ‚คใƒณใ‚นใ‚ฟใƒณใ‚นใ‚’ๆง‹็ฏ‰ใ—ใพใ™ใ€‚
         *
         * @param first
         *            1็•ช็›ฎใฎๅ€ค
         * @param second
         *            2็•ช็›ฎใฎๅ€ค
         */
        public Pair(final T1 first, final T2 second) {
            this.first = first;
            this.second = second;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/Gradleception.kt

         1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
         2. Build a Gradle distribution with this hash as a version + fixed timestamp -> dogfood-first
         3. Build a Gradle distribution using dogfood-first with this hash as a version + fixed timestamp different from the one above -> dogfood-second
         4. Use dogfood-second to run a Gradle build which runs tests.
    
         */
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top