Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 241 - 250 of 505 for share$ (0.15 seconds)

  1. CHANGELOG/CHANGELOG-1.15.md

    - Users can now specify azure file share name in the azure file plugin, making it possible to use existing shares or specify a new share name. ([#76988](https://github.com/kubernetes/kubernetes/pull/76988), [@andyzhangx](https://github.com/andyzhangx))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 278.9K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/dependencies/index.md

    Solo la pasas a `Depends` y **FastAPI** sabe cómo hacer el resto.
    
    ///
    
    ## Compartir dependencias `Annotated` { #share-annotated-dependencies }
    
    En los ejemplos anteriores, ves que hay un poquito de **duplicación de código**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 10K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            final FessXpathTransformer transformer = new FessXpathTransformer();
            // topic/2732: java.net.URL does not support smb:// scheme, so isValidUrl returns false
            assertFalse(transformer.isValidUrl("smb://server/share/file"));
        }
    
        @Test
        public void test_normalizeCanonicalUrl_malformedReturnsNull() throws Exception {
            final FessXpathTransformer transformer = new FessXpathTransformer();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/dependencies/index.md

    Sadece `Depends`'e verirsiniz ve gerisini **FastAPI** nasıl yapacağını bilir.
    
    ///
    
    ## `Annotated` Dependency'lerini Paylaşın { #share-annotated-dependencies }
    
    Yukarıdaki örneklerde, ufak bir **kod tekrarı** olduğunu görüyorsunuz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * equal, and the [equals()][Object.equals] method between them returns true:
     *
     *  * https://example.net/
     *
     *  * https://example.com/
     *
     * This is because those two hosts share the same IP address. This is an old, bad design decision
     * that makes `java.net.URL` unusable for many things. It shouldn't be used as a [Map] key or in a
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 63.5K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb/CriticalPerformanceTest.java

                        long threadStart = System.nanoTime();
                        for (int i = 0; i < operationsPerThread; i++) {
                            try {
                                String shareName = "share" + (threadId % 5); // Use 5 different shares
    
                                // Test concurrent tree operations (should be thread-safe with CopyOnWriteArrayList)
                                long opStart = System.nanoTime();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  7. docs/zh/docs/tutorial/dependencies/index.md

    ```
    
    这样,你只需编写一次共享代码,**FastAPI** 会在你的*路径操作*中为你调用它。
    
    /// check | 检查
    
    注意,无需创建专门的类并传给 **FastAPI** 去“注册”之类的操作。
    
    只要把它传给 `Depends`,**FastAPI** 就知道该怎么做了。
    
    ///
    
    ## 共享 `Annotated` 依赖项 { #share-annotated-dependencies }
    
    在上面的示例中,你会发现这里有一点点**代码重复**。
    
    当你需要使用 `common_parameters()` 这个依赖时,你必须写出完整的带类型注解和 `Depends()` 的参数:
    
    ```Python
    commons: Annotated[dict, Depends(common_parameters)]
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/dependencies/index.md

    ```
    
    如此一來,你只需撰寫一次共用程式碼,**FastAPI** 會替你的各個「路徑操作」呼叫它。
    
    /// check | 檢查
    
    注意,你不必建立特殊的類別並把它傳到 **FastAPI** 去「註冊」或做類似的事。
    
    只要把它傳給 `Depends`,**FastAPI** 就知道該怎麼處理其餘的部分。
    
    ///
    
    ## 共用 `Annotated` 依賴 { #share-annotated-dependencies }
    
    在上面的範例中,可以看到有一點點的「重複程式碼」。
    
    當你要使用 `common_parameters()` 這個依賴時,你得寫出完整的型別註解搭配 `Depends()`:
    
    ```Python
    commons: Annotated[dict, Depends(common_parameters)]
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val call3 = client.newCall(Request(server.url("/")))
        call3.execute().use { response ->
          assertThat(
            response.body.string(),
          ).isEqualTo("c")
        }
    
        // All calls share a connection.
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(0)
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(1)
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(2)
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 67.5K bytes
    - Click Count (0)
  10. docs/de/docs/tutorial/dependencies/index.md

    Sie übergeben es einfach an `Depends` und **FastAPI** weiß, wie der Rest erledigt wird.
    
    ///
    
    ## `Annotated`-Abhängigkeiten wiederverwenden { #share-annotated-dependencies }
    
    In den Beispielen oben sehen Sie, dass es ein kleines bisschen **Codeverdoppelung** gibt.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 11.3K bytes
    - Click Count (0)
Back to Top