Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 279 for 22 (0.04 sec)

  1. docs/em/docs/tutorial/dependencies/sub-dependencies.md

    * โšซ๏ธ ๐Ÿ“ฃ ๐Ÿ“ฆ `last_query` ๐Ÿช, `str`.
        * ๐Ÿšฅ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿšซ ๐Ÿšš ๐Ÿ™† ๐Ÿ”ข `q`, ๐Ÿ‘ฅ โš™๏ธ ๐Ÿ ๐Ÿ”ข โš™๏ธ, โ” ๐Ÿ‘ฅ ๐Ÿ–Š ๐Ÿช โญ.
    
    ## โš™๏ธ ๐Ÿ”—
    
    โคด๏ธ ๐Ÿ‘ฅ ๐Ÿ’ช โš™๏ธ ๐Ÿ”— โฎ๏ธ:
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ & ๐Ÿ”›
    
    ```Python hl_lines="22"
    {!> ../../docs_src/dependencies/tutorial005.py!}
    ```
    
    ////
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.1๏ธโƒฃ0๏ธโƒฃ & ๐Ÿ”›
    
    ```Python hl_lines="19"
    {!> ../../docs_src/dependencies/tutorial005_py310.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

               * com.google.common.collect.testing.AbstractIteratorTester from class
               * com.google.common.collect.MultimapsTest"
               *
               * ...when we build with JDK 22 and run under JDK 8.
               */
              || info.getName().contains("MultimapsTest")
          /*
           * Luckily, we don't care about analyzing tests at all. We'd skip them all if we could do so
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 18:53:31 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. go.mod

    	github.com/felixge/httpsnoop v1.0.4 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0 // indirect
    	github.com/go-errors/errors v1.5.1 // indirect
    	github.com/go-jose/go-jose/v4 v4.0.2 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-openapi/jsonpointer v0.21.0 // indirect
    	github.com/go-openapi/jsonreference v0.21.0 // indirect
    	github.com/go-openapi/swag v0.23.0 // indirect
    	github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 06:23:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/response-model.md

    ```
    
    ////
    
    ...๐Ÿ‘ฅ ๐Ÿ“ฃ `response_model` ๐Ÿ‘† ๐Ÿท `UserOut`, ๐Ÿ‘ˆ ๐Ÿšซ ๐Ÿ”Œ ๐Ÿ”:
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ & ๐Ÿ”›
    
    ```Python hl_lines="22"
    {!> ../../docs_src/response_model/tutorial003.py!}
    ```
    
    ////
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.1๏ธโƒฃ0๏ธโƒฃ & ๐Ÿ”›
    
    ```Python hl_lines="22"
    {!> ../../docs_src/response_model/tutorial003_py310.py!}
    ```
    
    ////
    
    , **FastAPI** ๐Ÿ”œ โœŠ ๐Ÿ’… ๐Ÿ–ฅ ๐Ÿ‘… ๐ŸŒ ๐Ÿ’ฝ ๐Ÿ‘ˆ ๐Ÿšซ ๐Ÿ“ฃ ๐Ÿ”ข ๐Ÿท (โš™๏ธ Pydantic).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tests/joins_table_test.go

    	if DB.Unscoped().Model(&person).Association("Addresses").Count() != 0 {
    		t.Fatalf("address should be deleted when clear with unscoped")
    	}
    
    	address2_1 := Address{Name: "address 2-1"}
    	address2_2 := Address{Name: "address 2-2"}
    	person2 := Person{Name: "person_2", Addresses: []Address{address2_1, address2_2}}
    	DB.Create(&person2)
    	if err := DB.Select(clause.Associations).Delete(&person2).Error; err != nil {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Sep 10 13:46:18 UTC 2020
    - 3.5K bytes
    - Viewed (1)
  6. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    ```
    
    ////
    
    //// tab | Python 3.8 non-Annotated
    
    /// tip
    
    Prefer to use the `Annotated` version if possible.
    
    ///
    
    ```Python hl_lines="22"
    {!> ../../docs_src/dependencies/tutorial005.py!}
    ```
    
    ////
    
    /// info
    
    Notice that we are only declaring one dependency in the *path operation function*, the `query_or_cookie_extractor`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheStatsTest.java

        assertThat(diff.hitRate()).isEqualTo(42.0 / 76);
        assertEquals(34, diff.missCount());
        assertThat(diff.missRate()).isEqualTo(34.0 / 76);
        assertEquals(26, diff.loadSuccessCount());
        assertEquals(22, diff.loadExceptionCount());
        assertThat(diff.loadExceptionRate()).isEqualTo(22.0 / 48);
        assertEquals(26 + 22, diff.loadCount());
        assertEquals(14, diff.totalLoadTime());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 03 18:10:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

        }
        int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) {
            int start = bufferIndex;
    
            pathConsumed = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
                /* Samba 2.2.8a will reply with Unicode paths even though
                 * ASCII is negotiated so we must use flags2 (probably
                 * should anyway).
                 */
            if((flags2 & FLAGS2_UNICODE) != 0) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/advanced-dependencies.md

    checker(q="somequery")
    ```
    
    ... und รผbergibt, was immer das als Wert dieser Abhรคngigkeit in unserer *Pfadoperation-Funktion* zurรผckgibt, als den Parameter `fixed_content_included`:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="22"
    {!> ../../docs_src/dependencies/tutorial011_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="21"
    {!> ../../docs_src/dependencies/tutorial011_an.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

      }
    
      public void testTest() {
        Object group1Item1 = new TestObject(1, 1);
        Object group1Item2 = new TestObject(1, 2);
        Object group2Item1 = new TestObject(2, 1);
        Object group2Item2 = new TestObject(2, 2);
    
        equivalenceMock.expectEquivalent(group1Item1, group1Item2);
        equivalenceMock.expectDistinct(group1Item1, group2Item1);
        equivalenceMock.expectDistinct(group1Item1, group2Item2);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top