Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testengine (0.97 sec)

  1. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            if (keyLength == 16) {
                // AES-128 CCM
                cipher = new CCMBlockCipher(new AESEngine());
            } else if (keyLength == 32) {
                // AES-256 CCM - Bouncy Castle supports AES-256 with same AESEngine
                cipher = new CCMBlockCipher(new AESEngine());
            } else {
                throw new IllegalArgumentException("Unsupported key length for CCM: " + keyLength);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  2. docs/tr/docs/async.md

    Ancak yukarıdaki adımları takip ederek, bazı performans optimizasyonları yapılabilecektir.
    
    ## Teknik Detaylar
    
    Python'un modern versiyonlarında **`async` ve `await`** sözdizimi ile **"coroutines"**  kullanan **"asenkron kod"** desteğine sahiptir.
    
    Bu ifadeyi aşağıdaki bölümlerde daha da ayrıntılı açıklayalım:
    
    * **Asenkron kod**
    * **`async` ve `await`**
    * **Coroutines**
    
    ## Asenkron kod
    
    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/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)
Back to top