Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 59 for selama (0.04 seconds)

  1. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

            assertEquals("ollama", request.getAttribute(Constants.SEARCH_LOG_ACCESS_TYPE));
        }
    
        @Test
        public void test_mockRequest_attributeOverwrite() {
            final MockHttpServletRequest request = new MockHttpServletRequest();
    
            request.setAttribute(Constants.SEARCH_LOG_ACCESS_TYPE, "ollama");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 14 01:39:16 GMT 2026
    - 35K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/bigger-applications.md

    Import’ların nasıl çalıştığını çok iyi biliyorsanız, bir sonraki bölüme geçin.
    
    ///
    
    Tek bir nokta `.`, örneğin:
    
    ```Python
    from .dependencies import get_token_header
    ```
    
    şu anlama gelir:
    
    * Bu module’ün (yani `app/routers/items.py` dosyasının) bulunduğu package içinden başla ( `app/routers/` dizini)...
    * `dependencies` module’ünü bul (`app/routers/dependencies.py` gibi hayali bir dosya)...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/index.md

    FastAPI'nin [VS Code için resmi bir eklentisi](https://marketplace.visualstudio.com/items?itemName=FastAPILabs.fastapi-vscode) (ve Cursor) vardır; path operation gezgini, path operation araması, testlerde CodeLens ile gezinme (testlerden tanıma atlama) ve FastAPI Cloud deploy ve logları gibi pek çok özelliği doğrudan editörünüzden sunar.
    
    ///
    
    ## İleri Düzey Kullanıcı Rehberi { #advanced-user-guide }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  4. docs/tr/docs/advanced/middleware.md

    ///
    
    ## `HTTPSRedirectMiddleware` { #httpsredirectmiddleware }
    
    Gelen tüm request'lerin `https` veya `wss` olmasını zorunlu kılar.
    
    `http` veya `ws` olarak gelen herhangi bir request, bunun yerine güvenli şemaya redirect edilir.
    
    {* ../../docs_src/advanced_middleware/tutorial001_py310.py hl[2,6] *}
    
    ## `TrustedHostMiddleware` { #trustedhostmiddleware }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. docs/tr/docs/_llm-test.md

    //// tab | Bilgi
    
    ... Ancak code snippet'lerin içindeki tırnaklar olduğu gibi kalmalıdır.
    
    ////
    
    ## Code block'lar { #code-blocks }
    
    //// tab | Test
    
    Bir Bash code örneği...
    
    ```bash
    # Evrene bir selam yazdır
    echo "Hello universe"
    ```
    
    ...ve bir console code örneği...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

        }
    
        @Test
        public void test_addSearchLog_accessType_ollama() {
            final SearchLog searchLog = callCreateSearchLogAndGetResult("ollama");
            assertEquals("ollama", searchLog.getAccessType());
        }
    
        @Test
        public void test_addSearchLog_accessType_openai() {
            final SearchLog searchLog = callCreateSearchLogAndGetResult("openai");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/response-status-code.md

    Önceki örneğe tekrar bakalım:
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    `201`, "Created" için kullanılan status code'dur.
    
    Ancak bu kodların her birinin ne anlama geldiğini ezberlemek zorunda değilsiniz.
    
    `fastapi.status` içindeki kolaylık değişkenlerini (convenience variables) kullanabilirsiniz.
    
    {* ../../docs_src/response_status_code/tutorial002_py310.py hl[1,6] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/security/oauth2-jwt.md

    De esta manera, puedes crear un token con una expiración de, digamos, 1 semana. Y luego, cuando el usuario regresa al día siguiente con el token, sabes que el usuario todavía está registrado en tu sistema.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/llm/LlmClient.java

    package org.codelibs.fess.llm;
    
    import java.util.List;
    import java.util.Map;
    
    /**
     * Interface for LLM (Large Language Model) clients.
     * Implementations provide integration with different LLM providers
     * such as Ollama, OpenAI, and Google Gemini.
     *
     * In addition to low-level chat operations, this interface defines
     * high-level RAG workflow methods that allow each provider to optimize
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  10. docs/tr/docs/python-types.md

    #### Tuple ve Set { #tuple-and-set }
    
    `tuple`'ları ve `set`'leri bildirmek için de aynısını yaparsınız:
    
    {* ../../docs_src/python_types/tutorial007_py310.py hl[1] *}
    
    Bu şu anlama gelir:
    
    * `items_t` değişkeni 3 öğeli bir `tuple`'dır: bir `int`, bir başka `int` ve bir `str`.
    * `items_s` değişkeni bir `set`'tir ve her bir öğesi `bytes` tipindedir.
    
    #### Dict { #dict }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top