Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1881 - 1890 of 2,393 for sata (0.07 seconds)

  1. src/test/java/jcifs/SmbResourceLocatorTest.java

            }
    
            // Test that getAddress returns null for our dummy implementation
            assertNull(loc.getAddress());
        }
    
        @Test
        @DisplayName("Test DFS referral data")
        void testDfsReferralData() throws Exception {
            String url = "smb://server/share/path/";
            DummySmbResourceLocator loc = new DummySmbResourceLocator(url);
    
            // Initially no DFS referral
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/stream-json-lines.md

    /// tip | Tipp
    
    Wenn Sie Binärdaten streamen möchten, zum Beispiel Video oder Audio, sehen Sie sich den erweiterten Leitfaden an: [Daten streamen](../advanced/stream-data.md).
    
    ///
    
    ## JSON Lines mit FastAPI streamen { #stream-json-lines-with-fastapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/background-tasks.md

        * As connecting to an email server and sending an email tends to be "slow" (several seconds), you can return the response right away and send the email notification in the background.
    * Processing data:
        * For example, let's say you receive a file that must go through a slow process, you can return a response of "Accepted" (HTTP 202) and process the file in the background.
    
    ## Using `BackgroundTasks` { #using-backgroundtasks }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/advanced/dataclasses.md

    該 dataclass 會自動轉換為 Pydantic 的 dataclass。
    
    如此一來,其結構描述(schema)會顯示在 API 文件介面中:
    
    <img src="/img/tutorial/dataclasses/image01.png">
    
    ## 巢狀資料結構中的 Dataclasses { #dataclasses-in-nested-data-structures }
    
    你也可以將 `dataclasses` 與其他型別註記結合,建立巢狀的資料結構。
    
    在某些情況下,你可能仍需要使用 Pydantic 版本的 `dataclasses`。例如,當自動產生的 API 文件出現錯誤時。
    
    這種情況下,你可以把標準的 `dataclasses` 直接換成 `pydantic.dataclasses`,它是可直接替換(drop-in replacement)的:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  5. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

            }
    
            @Test
            @DisplayName("Should decode buffer correctly")
            void testDecode() throws SMBProtocolDecodingException {
                // Prepare test buffer with sample data
                byte[] buffer = new byte[24];
                // Skip idFileSystem (4 bytes)
                buffer[4] = 0x08; // sectPerAlloc = 8
                buffer[8] = 0x00;
                buffer[9] = 0x10; // alloc = 4096
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.1K bytes
    - Click Count (0)
  6. docs/uk/docs/python-types.md

    ```python
    from typing import Any
    
    
    def some_function(data: Any):
        print(data)
    ```
    
    ### Generic типи { #generic-types }
    
    Деякі типи можуть приймати «параметри типів» у квадратних дужках, щоб визначити їх внутрішні типи. Наприклад, «list строк» буде оголошений як `list[str]`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/schema-extra-example.md

    # 宣告請求範例資料 { #declare-request-example-data }
    
    你可以宣告你的應用程式可接收資料的 examples。
    
    以下有數種方式可達成。
    
    ## Pydantic 模型中的額外 JSON Schema 資料 { #extra-json-schema-data-in-pydantic-models }
    
    你可以為 Pydantic 模型宣告 `examples`,它們會加入到產生出的 JSON Schema 中。
    
    {* ../../docs_src/schema_extra_example/tutorial001_py310.py hl[13:24] *}
    
    這些額外資訊會原封不動加入該模型輸出的 JSON Schema,並且會用在 API 文件裡。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  8. docs/bucket/versioning/README.md

    bucket. For example, you could store `spark.csv` (version `ede336f2`) and `spark.csv` (version `fae684da`) in a single bucket. Versioning protects you from unintended overwrites, deletions, protect objects with retention policies.
    
    To control data retention and storage usage, use object versioning with [object lifecycle management](https://github.com/minio/minio/blob/master/docs/bucket/lifecycle/README.md).  If you have an object expiration lifecycle policy in your non-versioned bucket and you...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 12K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            assertEquals("\"field999\"", result[999]);
    
        }
    
        @Test
        public void test_parse_complex_scenarios() {
            String value;
            String[] result;
    
            // Complex real-world-like data - quotes are preserved
            value = "\"John Doe\",\"Software Engineer\",\"******@****.***\",\"Loves \"\"coding\"\" and coffee\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(4, result.length);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

          FakeTicker ticker,
          String keyPrefix,
          long ttl) {
        loader.setKeyPrefix(keyPrefix);
    
        int shift1 = 10 + VALUE_PREFIX;
        loader.setValuePrefix(shift1);
        // fill with initial data
        for (int i = 0; i < 10; i++) {
          assertThat(cache.getUnchecked(keyPrefix + i)).isEqualTo(i + shift1);
        }
        assertThat(CacheTesting.expirationQueueSize(cache)).isEqualTo(10);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 19.1K bytes
    - Click Count (0)
Back to Top