Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 473 for simple (0.21 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

    # Simple OAuth2 with Password and Bearer
    
    Now let's build from the previous chapter and add the missing parts to have a complete security flow.
    
    ## Get the `username` and `password`
    
    We are going to use **FastAPI** security utilities to get the `username` and `password`.
    
    OAuth2 specifies that when using the "password flow" (that we are using) the client/user must send a `username` and `password` fields as form data.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/security/simple-oauth2.md

    Nils Lindemann <******@****.***> 1711822124 +0100
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:08:44 GMT 2024
    - 14.3K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/security/simple-oauth2.md

    DoHyun Kim <******@****.***> 1712097443 +0900
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 22:37:23 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/resources/settings-simple.xml

    Guillaume Nodet <******@****.***> 1711363801 +0100
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 895 bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/security/simple-oauth2.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.9K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/security/simple-oauth2.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.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/SplitterTest.java

       */
      public void testCharacterSimpleSplitToList() {
        String simple = "a,b,c";
        List<String> letters = COMMA_SPLITTER.splitToList(simple);
        assertThat(letters).containsExactly("a", "b", "c").inOrder();
      }
    
      public void testCharacterSimpleSplitToStream() {
        String simple = "a,b,c";
        List<String> letters = COMMA_SPLITTER.splitToStream(simple).collect(toImmutableList());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 29.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/SplitterTest.java

      }
    
      public void testStringSimpleSplit() {
        String simple = "a,b,c";
        Iterable<String> letters = Splitter.on(",").split(simple);
        assertThat(letters).containsExactly("a", "b", "c").inOrder();
      }
    
      public void testStringSimpleSplitWithNoDelimiter() {
        String simple = "a,b,c";
        Iterable<String> letters = Splitter.on(".").split(simple);
        assertThat(letters).containsExactly("a,b,c").inOrder();
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(ImmutableList.<Integer>of(), result);
      }
    
      public void testLeastOfIterable_simple_negativeOne() {
        try {
          numberOrdering.leastOf(Arrays.asList(3, 4, 5, -1), -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testLeastOfIterator_simple_negativeOne() {
        try {
          numberOrdering.leastOf(Iterators.forArray(3, 4, 5, -1), -1);
          fail();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(ImmutableList.<Integer>of(), result);
      }
    
      public void testLeastOfIterable_simple_negativeOne() {
        try {
          numberOrdering.leastOf(Arrays.asList(3, 4, 5, -1), -1);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testLeastOfIterator_simple_negativeOne() {
        try {
          numberOrdering.leastOf(Iterators.forArray(3, 4, 5, -1), -1);
          fail();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
Back to top