Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 29 for sohbet (0.17 seconds)

  1. docs/tr/docs/help-fastapi.md

    Chat'i sadece genel sohbetler için kullanın.
    
    ///
    
    ### Sorular için chat'i kullanmayın { #dont-use-the-chat-for-questions }
    
    Chat sistemleri daha "serbest sohbet"e izin verdiği için, çok genel ve yanıtlaması daha zor sorular sormak kolaylaşır; bu nedenle cevap alamayabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/server-sent-events.md

    Şuna benzer:
    
    ```
    data: {"name": "Portal Gun", "price": 999.99}
    
    data: {"name": "Plumbus", "price": 32.99}
    
    ```
    
    SSE; yapay zekâ sohbet akışı, canlı bildirimler, log ve gözlemlenebilirlik (observability) gibi senaryolarda ve sunucunun istemciye güncellemeleri ittiği diğer durumlarda yaygın olarak kullanılır.
    
    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. docs/tr/docs/async.md

    Beklerken aşkınla bir masa seçip oturuyorsunuz, uzun uzun sohbet ediyorsunuz (burgerler baya havalı ve hazırlanması biraz zaman alıyor).
    
    Masada aşkınla otururken, burgerleri beklerken, o zamanı aşkının ne kadar harika, tatlı ve zeki olduğuna hayran kalarak geçirebilirsin ✨😍✨.
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-05.png" class="illustration">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.7K bytes
    - Click Count (0)
  4. src/main/resources/fess_label_tr.properties

    labels.login.placeholder_confirm_new_password=Yeni Şifreyi Onayla
    labels.login.update=Güncelle
    
    # Chat labels
    labels.chat_title=Yapay Zeka Arama Modu - Fess
    labels.chat_new_chat=Yeni Sohbet
    labels.chat_input_placeholder=Bir soru sorun...
    labels.chat_thinking=Düşünüyor...
    labels.chat_error=Bir hata oluştu. Lütfen tekrar deneyin.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52.2K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocket.kt

    /**
     * A non-blocking interface to a web socket. Use the [factory][WebSocket.Factory] to create
     * instances; usually this is [OkHttpClient].
     *
     * ## Web Socket Lifecycle
     *
     * Upon normal operation each web socket progresses through a sequence of states:
     *
     *  * **Connecting:** the initial state of each web socket. Messages may be enqueued but they won't
     *    be transmitted until the web socket is open.
     *
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:45:14 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

      }
    
      class DelayingSocketFactory(
        val onConnect: Socket.(timeout: Int) -> Unit = {},
        val onRead: Socket.() -> Unit = {},
        val onWrite: Socket.() -> Unit = {},
      ) : DelegatingSocketFactory(getDefault()) {
        override fun createSocket(): Socket {
          return object : Socket() {
            override fun connect(
              endpoint: SocketAddress?,
              timeout: Int,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun connection() {
        val connection =
          object : Connection {
            override fun route(): Route = TODO()
    
            override fun socket(): Socket = TODO()
    
            override fun handshake(): Handshake? = TODO()
    
            override fun protocol(): Protocol = TODO()
          }
      }
    
      @Test
      fun connectionPool() {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 49.7K bytes
    - Click Count (0)
  8. docs/features/connections.md

    `github.com`) and all of the **static** configuration necessary to connect to that server: the port number, HTTPS settings, and preferred network protocols (like HTTP/2).
    
    URLs that share the same address may also share the same underlying TCP socket connection. Sharing a connection has substantial performance benefits: lower latency, higher throughput (due to [TCP slow start](https://www.igvita.com/2011/10/20/faster-web-vs-tcp-slow-start/)) and conserved battery. OkHttp uses a [ConnectionPoo...
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:01:42 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/extra-models.md

    /// danger | Cuidado
    
    Nunca armazene senhas em texto simples dos usuários. Sempre armazene uma "hash segura" que você pode verificar depois.
    
    Se não souber, você aprenderá o que é uma "senha hash" nos [capítulos de segurança](security/simple-oauth2.md#password-hashing).
    
    ///
    
    ## Múltiplos modelos { #multiple-models }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/curl/CurlRequest.java

        public CurlRequest compression(final String compression) {
            this.compression = compression;
            return this;
        }
    
        /**
         * Sets the SSL socket factory for secure connections.
         *
         * @param sslSocketFactory the SSL socket factory
         * @return this CurlRequest instance
         */
        public CurlRequest sslSocketFactory(final SSLSocketFactory sslSocketFactory) {
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 09:11:12 GMT 2026
    - 19.7K bytes
    - Click Count (0)
Back to Top