Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for vagy (0.02 sec)

  1. src/main/resources/fess_indices/fess/vi/stopwords.txt

    nếu
    ngay
    nhiều
    như
    nhưng
    những
    nơi
    nữa
    phải
    qua
    ra
    rằng
    rằng
    rất
    rất
    rồi
    sau
    sẽ
    so
    sự
    tại
    theo
    thì
    trên
    trước
    từ
    từng
    và
    vẫn
    vào
    vậy
    vì
    việc
    với
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 457 bytes
    - Viewed (0)
  2. docs/vi/docs/virtual-environments.md

    * `.gitignore`: tên của file mà văn bản sẽ được viết vào
    
    Và `*` với Git có nghĩa là "mọi thứ". Vì vậy, nó sẽ bỏ qua mọi thứ trong thư mục `.venv`.
    
    Lệnh này sẽ tạo một file `.gitignore` với nội dung:
    
    ```gitignore
    *
    ```
    
    ///
    
    ## Cài đặt gói (packages)
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 07 22:19:18 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

      @Test
      fun varyMultipleFieldsWithMatch() {
        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("Cache-Control: max-age=60")
            .addHeader("Vary: Accept-Language, Accept-Charset")
            .addHeader("Vary: Accept-Encoding")
            .body("A")
            .build(),
        )
        server.enqueue(
          MockResponse
            .Builder()
            .body("B")
            .build(),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

     *
     * Install OpenSC separately. On a mac `brew cast install opensc`.
     */
    @SuppressSignatureCheck
    class YubikeyClientAuth {
      fun run() {
        // The typical PKCS11 slot, may vary with different hardware.
        val slot = 0
    
        val config = "--name=OpenSC\nlibrary=/Library/OpenSC/lib/opensc-pkcs11.so\nslot=$slot\n"
    
        // May fail with ProviderException with root cause like
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. docs/vi/docs/environment-variables.md

    ```plaintext
    C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32;C:\opt\custompython\bin
    ```
    
    Như vậy, khi bạn gõ `python` trong terminal, hệ thống sẽ tìm thấy chương trình Python trong `C:\opt\custompython\bin` (thư mục cuối) và sử dụng nó.
    
    ////
    
    Vậy, nếu bạn gõ:
    
    <div class="termy">
    
    ```console
    $ python
    ```
    
    </div>
    
    //// tab | Linux, macOS
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 07 22:17:13 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HttpHeaders.java

      public static final String KEEP_ALIVE = "Keep-Alive";
    
      /**
       * The HTTP <a href="https://github.com/WICG/nav-speculation/blob/main/no-vary-search.md">{@code
       * No-Vary-Seearch}</a> header field name.
       *
       * @since 32.0.0
       */
      public static final String NO_VARY_SEARCH = "No-Vary-Search";
    
      /**
       * The HTTP <a href="https://googlechrome.github.io/OriginTrials/#header">{@code Origin-Trial}</a>
       * header field name.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  7. docs/vi/docs/tutorial/static-files.md

    Bạn có thể đọc thêm về điều này trong [Hướng dẫn Người dùng Nâng cao](../advanced/index.md){.internal-link target=\_blank}.
    
    ## Chi tiết
    
    Đường dẫn đầu tiên `"/static"` là đường dẫn con mà "ứng dụng con" này sẽ được "gắn" vào. Vì vậy, bất kỳ đường dẫn nào bắt đầu bằng `"/static"` sẽ được xử lý bởi nó.
    
    Đường dẫn `directory="static"` là tên của thư mục chứa tệp tĩnh của bạn.
    
    Tham số `name="static"` đặt tên cho nó để có thể được sử dụng bên trong **FastAPI**.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Feb 15 11:08:22 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. docs/recipes.md

              println("Server: ${response.header("Server")}")
              println("Date: ${response.header("Date")}")
              println("Vary: ${response.headers("Vary")}")
            }
          }
        ```
    
    === ":material-language-java: Java"
        ```java
          private final OkHttpClient client = new OkHttpClient();
    
          public void run() throws Exception {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/BiMap.java

      @Nullable V forcePut(@ParametricNullness K key, @ParametricNullness V value);
    
      // Bulk Operations
    
      /**
       * {@inheritDoc}
       *
       * <p><b>Warning:</b> the results of calling this method may vary depending on the iteration order
       * of {@code map}.
       *
       * @throws IllegalArgumentException if an attempt to {@code put} any entry fails. Note that some
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  10. docs/vi/docs/fastapi-cli.md

    ## `fastapi run`
    
    Chạy `fastapi run` mặc định sẽ khởi động FastAPI cho quá trình vận hành thực tế.
    
    Mặc định, **auto-reload** bị tắt. Nó cũng lắng nghe địa chỉ IP `0.0.0.0`, đó là tất cả các địa chỉ IP có sẵn, như vậy nó sẽ được truy cập công khai bởi bất kỳ ai có thể giao tiếp với máy tính. Đây là cách bạn thường chạy nó trong sản phẩm hoàn thiện, ví dụ trong một container.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 07 22:09:16 UTC 2025
    - 5.4K bytes
    - Viewed (0)
Back to top