Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1341 - 1350 of 1,832 for context_ (0.08 seconds)

  1. src/test/java/jcifs/context/CIFSContextCredentialWrapperTest.java

    package jcifs.context;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.mockito.ArgumentMatchers.any;
    import static org.mockito.ArgumentMatchers.eq;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.mockStatic;
    import static org.mockito.Mockito.never;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/request-files.md

    * `close()`:关闭文件。
    
    由于这些方法都是 `async` 方法,你需要对它们使用 await。
    
    例如,在 `async` *路径操作函数* 内,你可以这样获取内容:
    
    ```Python
    contents = await myfile.read()
    ```
    
    如果是在普通 `def` *路径操作函数* 内,你可以直接访问 `UploadFile.file`,例如:
    
    ```Python
    contents = myfile.file.read()
    ```
    
    /// note | `async` 技术细节
    
    当你使用这些 `async` 方法时,**FastAPI** 会在线程池中运行相应的文件方法并等待其完成。
    
    ///
    
    /// note | Starlette 技术细节
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  3. docs/en/data/topic_repos.yml

    - name: farfalle
      html_url: https://github.com/rashadphz/farfalle
      stars: 3521
      owner_login: rashadphz
      owner_html_url: https://github.com/rashadphz
    - name: mcp-context-forge
      html_url: https://github.com/IBM/mcp-context-forge
      stars: 3501
      owner_login: IBM
      owner_html_url: https://github.com/IBM
    - name: opyrator
      html_url: https://github.com/ml-tooling/opyrator
      stars: 3137
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 12:36:41 GMT 2026
    - 16K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/core/io/PropertiesUtil.java

            } catch (final IOException e) {
                throw new IORuntimeException(e);
            } finally {
                CloseableUtil.close(in);
            }
        }
    
        /**
         * Loads a resource from the context class loader into the {@link Properties} (wraps exception handling).
         *
         * @param props
         *            Property set. Must not be {@literal null}.
         * @param path
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  5. tensorflow/c/eager/gradients.h

    // =============== Experimental C++ API for computing gradients ===============
    
    // Sample gradient function:
    //
    // class AddGradientFunction : public GradientFunction {
    //  public:
    //   Status Compute(Context* ctx,
    //                  absl::Span<AbstractTensorHandle* const> grad_inputs,
    //                  absl::Span<AbstractTensorHandle*> grad_outputs) override {
    //     grad_outputs[0] = grad_inputs[0];
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 6.9K bytes
    - Click Count (0)
  6. README.md

    [![Reproducible Builds](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/org/apache/maven/maven/badge.json)](https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/apache/maven/maven/README.md)
    
    - [master](https://github.com/apache/maven) = 4.1.x
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 25 08:06:02 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  7. docs/tr/docs/how-to/custom-docs-ui-assets.md

    API dokümanları **Swagger UI** ve **ReDoc** kullanır ve bunların her biri bazı JavaScript ve CSS dosyalarına ihtiyaç duyar.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/cors.md

    * `allow_headers` - 允許跨來源請求所支援的 HTTP 請求標頭清單。預設為 `[]`。你可以使用 `['*']` 來允許所有標頭。對於[簡單 CORS 請求](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#simple_requests),`Accept`、`Accept-Language`、`Content-Language` 與 `Content-Type` 標頭一律被允許。
    * `allow_credentials` - 指示是否支援跨來源請求的 Cookie。預設為 `False`。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5K bytes
    - Click Count (0)
  9. src/test/java/jcifs/util/StringsTest.java

                        assertEquals(original, asciiRoundTrip, "ASCII round-trip should preserve content");
                    }
    
                    // Then
                    assertEquals(original, uniRoundTrip, "UNI round-trip should preserve content: " + original);
                }
            }
    
            @Test
            @DisplayName("Strings utility class should not be instantiable")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.6K bytes
    - Click Count (0)
  10. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            Without this, daemon may keep writing to project dir after the test finishes, resulting in errors like:
    
            org.junit.platform.commons.JUnitException: Failed to close extension context
    	        at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    	        at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 00:16:44 GMT 2026
    - 11.6K bytes
    - Click Count (0)
Back to Top