Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for anahtar (0.11 seconds)

  1. docs/tr/docs/features.md

        "joined": "2018-11-30",
    }
    
    my_second_user: User = User(**second_user_data)
    ```
    
    
    /// info
    
    `**second_user_data` şu anlama gelir:
    
    `second_user_data` dict’indeki anahtar ve değerleri doğrudan anahtar-değer argümanları olarak geç; şu ifadeye eşdeğerdir: `User(id=4, name="Mary", joined="2018-11-30")`
    
    ///
    
    ### Editör Desteği { #editor-support }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/security/oauth2-jwt.md

    ### JWT "subject" `sub` Hakkında Teknik Detaylar { #technical-details-about-the-jwt-subject-sub }
    
    JWT spesifikasyonu, token'ın konusu (subject) için `sub` adlı bir anahtar olduğunu söyler.
    
    Bunu kullanmak zorunlu değildir; ancak kullanıcı kimliğini koymak için uygun yer burasıdır, bu yüzden burada onu kullanıyoruz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  3. src/main/webapp/css/chat.css

    }
    
    .chat-message.assistant {
        justify-content: flex-start;
    }
    
    .message-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.875rem;
    }
    
    .chat-message.user .message-avatar {
        background: linear-gradient(135deg, #0052cc 0%, #2684ff 100%);
        color: white;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/response-model.md

    ...pero sigue leyendo abajo para ver cómo superar eso.
    
    ## Tipo de Retorno y Filtrado de Datos { #return-type-and-data-filtering }
    
    Continuemos con el ejemplo anterior. Queríamos **anotar la función con un tipo**, pero queríamos poder devolver desde la función algo que en realidad incluya **más datos**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  5. src/main/webapp/js/chat.js

            var timestamp = formatTimestamp(new Date());
    
            var html =
                '<div class="chat-message ' + role + '">' +
                    '<div class="message-avatar"><i class="fa ' + avatarIcon + '" aria-hidden="true"></i></div>' +
                    '<div class="message-wrapper">' +
                        '<div class="message-content">' +
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  6. docs/tr/docs/deployment/https.md

    Sonrasında tarayıcı response’un geçerli olduğunu ve doğru kriptografik anahtarla şifrelendiğini doğrular vb. Ardından **response’un şifresini çözer** ve işler.
    
    <img src="/img/deployment/https/https07.drawio.svg">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  7. docs/pt/docs/tutorial/response-model.md

    ...mas continue lendo abaixo para ver como superar isso.
    
    ## Tipo de Retorno e Filtragem de Dados { #return-type-and-data-filtering }
    
    Vamos continuar do exemplo anterior. Queríamos **anotar a função com um tipo**, mas queríamos poder retornar da função algo que realmente incluísse **mais dados**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 16.7K bytes
    - Click Count (0)
Back to Top