Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1251 - 1260 of 2,393 for sata (0.18 seconds)

  1. android/guava/src/com/google/common/io/ByteStreams.java

       * the stream.
       *
       * @param in the input stream to read from.
       * @param b the buffer into which the data is read.
       * @param off an int specifying the offset into the data.
       * @param len an int specifying the number of bytes to read.
       * @throws EOFException if this stream reaches the end before reading all the bytes.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 31.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                return doNameQuery(new Name(host, type, scope), svr);
            }
            int IP = 0x00;
            int hitDots = 0;
            final char[] data = host.toCharArray();
    
            for (int i = 0; i < data.length; i++) {
                char c = data[i];
                if (c < 48 || c > 57) {
                    return doNameQuery(new Name(host, type, scope), svr);
                }
                int b = 0x00;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 31.7K bytes
    - Click Count (0)
  3. helm-releases/minio-4.0.10.tgz

    https://docs.minio.io/docs/distributed-minio-quickstart-guide ## rootUser: "" rootPassword: "" ## Use existing Secret that store following variables: ## ## | Chart var | .data.<key> in Secret | ## |:-------- ## | rootUser | rootUser | ## | rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/"...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 04 16:09:22 GMT 2022
    - 19.2K bytes
    - Click Count (0)
  4. helm-releases/minio-4.0.14.tgz

    https://docs.minio.io/docs/distributed-minio-quickstart-guide ## rootUser: "" rootPassword: "" ## Use existing Secret that store following variables: ## ## | Chart var | .data.<key> in Secret | ## |:-------- ## | rootUser | rootUser | ## | rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/"...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Sep 05 01:06:49 GMT 2022
    - 19.6K bytes
    - Click Count (0)
  5. helm-releases/minio-4.0.7.tgz

    https://docs.minio.io/docs/distributed-minio-quickstart-guide ## rootUser: "" rootPassword: "" ## Use existing Secret that store following variables: ## ## | Chart var | .data.<key> in Secret | ## |:-------- ## | rootUser | rootUser | ## | rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/"...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jul 28 03:54:38 GMT 2022
    - 18.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

    import java.util.logging.Logger;
    
    import org.apache.commons.io.output.DeferredFileOutputStream;
    
    /**
     * ContentOutputStream is a custom output stream that extends DeferredFileOutputStream.
     * It writes data to a temporary file once the data size exceeds a specified threshold.
     *
     * <p>This class ensures that the temporary file is deleted if it is not needed.
     * It uses a logger to log warnings if there are issues deleting the temporary file.</p>
     *
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Nov 20 13:34:13 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt

     * License.kt", add the raw POM name string to the [aliases] list of the matching entry, or
     * create a new entry if the license is genuinely new.
     *
     * ## Adding a dependency whose POM has no license data
     *
     * If the task fails with "no license data in their POM or any parent POM", add a hardcoded
     * entry to the `hardcodedLicenses` map in `GenerateLicenseFile.kt`.
     */
    enum class License(
        val displayName: String,
        val url: String,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 13:24:46 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/how-to/general.md

    # 通用 - 操作指南 - 實用範例 { #general-how-to-recipes }
    
    以下是文件中其他位置的指引連結,適用於一般或常見問題。
    
    ## 篩選資料 - 安全性 { #filter-data-security }
    
    為確保你不會回傳超出應有的資料,請參閱[教學 - 回應模型 - 回傳型別](../tutorial/response-model.md)。
    
    ## 最佳化回應效能 - 回應模型 - 回傳型別 { #optimize-response-performance-response-model-return-type }
    
    為了在回傳 JSON 資料時最佳化效能,請使用回傳型別或回應模型,如此 Pydantic 會在 Rust 端處理序列化為 JSON,而不經過 Python。更多內容請參閱[教學 - 回應模型 - 回傳型別](../tutorial/response-model.md)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/request-forms.md

    # 表单数据 { #form-data }
    
    当你需要接收表单字段而不是 JSON 时,可以使用 `Form`。
    
    /// info
    
    要使用表单,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再进行安装,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## 导入 `Form` { #import-form }
    
    从 `fastapi` 导入 `Form`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb1/UniAddress.java

                int i, len, dots;
                char[] data;
    
                i = dots = 0; /* quick IP address validation */
                len = hostname.length();
                data = hostname.toCharArray();
                while (i < len && Character.isDigit(data[i++])) {
                    if (i == len && dots == 3) {
                        // probably an IP address
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 17K bytes
    - Click Count (0)
Back to Top