Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for sarete (0.04 sec)

  1. docs/tr/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial002.py hl[7] *}
    
    Bu durumda, `item_id` bir `int` olarak tanımlanacaktır.
    
    /// check | Ek bilgi
    
    Bu sayede, fonksiyon içerisinde hata denetimi, kod tamamlama gibi konularda editör desteğine kavuşacaksınız.
    
    ///
    
    ## Veri <abbr title="Dönüşüm: serialization, parsing ve marshalling olarak da biliniyor">Dönüşümü</abbr>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. docs/tr/docs/async.md

    ```Python hl_lines="2"
    @app.get('/')
    async def read_results():
        results = await some_library()
        return results
    ```
    
    /// note | Not
    
    Sadece `async def` ile tanımlanan fonksiyonlar içinde `await` kullanabilirsiniz.
    
    ///
    
    ---
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/query-params.md

    ## Zorunlu Sorgu Parametreleri
    
    Türü yol olmayan bir parametre (şu ana kadar sadece sorgu parametrelerini gördük) için varsayılan değer tanımlarsanız o parametre zorunlu olmayacaktır.
    
    Parametre için belirli bir değer atamak istemeyip parametrenin sadece isteğe bağlı olmasını istiyorsanız değerini `None` olarak atayabilirsiniz.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. docs/tr/docs/index.md

    Hepsi sadece **Python** standartlarına dayalıdır.
    
    Örnek olarak, `int` tanımlamak için:
    
    ```Python
    item_id: int
    ```
    
    ya da daha kompleks herhangi bir python modelini tanımlayabiliriz, örneğin `Item` modeli için:
    
    ```Python
    item: Item
    ```
    
    ...ve sadece kısa bir parametre tipi belirterek elde ettiklerimiz:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/oauth2-jwt.md

    Viele Packages, die es stark vereinfachen, müssen viele Kompromisse beim Datenmodell, der Datenbank und den verfügbaren Funktionen eingehen. Und einige dieser Pakete, die die Dinge zu sehr vereinfachen, weisen tatsächlich Sicherheitslücken auf.
    
    ---
    
    **FastAPI** geht bei keiner Datenbank, keinem Datenmodell oder Tool Kompromisse ein.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/CriticalPerformanceTest.java

            assertEquals((long) threadCount * operationsPerThread * 1024, mockBytesEncrypted.get());
        }
    
        /**
         * Test session management thread safety with concurrent operations
         */
        @Test
        public void testSessionManagementConcurrentPerformance() throws Exception {
            SmbTransportImpl mockTransport = Mockito.mock(SmbTransportImpl.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/BufferCacheSecurityTest.java

                BufferCache.releaseBuffer(correctBuffer); // Should accept correct size
            });
        }
    
        /**
         * Test concurrent buffer allocation and release for thread safety.
         */
        @Test
        public void testConcurrentBufferOperations() throws Exception {
            // Given
            int threadCount = 10;
            int opsPerThread = 100;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java

                auth4.close();
            } finally {
                auth1.close();
                auth2.close();
            }
        }
    
        /**
         * Test concurrent password comparisons to ensure thread safety and consistent timing.
         */
        @Test
        public void testConcurrentTimingConsistency() throws Exception {
            final char[] password = "concurrenttestpassword".toCharArray();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/security/oauth2-jwt.md

    ///
    
    ## Hashing de contraseñas
    
    "Hacer hashing" significa convertir algún contenido (una contraseña en este caso) en una secuencia de bytes (solo un string) que parece un galimatías.
    
    Siempre que pases exactamente el mismo contenido (exactamente la misma contraseña) obtienes exactamente el mismo galimatías.
    
    Pero no puedes convertir del galimatías de nuevo a la contraseña.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    Ensuite, quand c'est votre tour, vous faites des actions "productives" 🤓, vous étudiez le menu, décidez ce que vous voulez, demandez à votre crush 😍 son choix, payez 💸, vérifiez que vous utilisez la bonne carte de crédit, vérifiez que le montant débité sur la carte est correct, vérifiez que la commande contient les bons produits, etc.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top