Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 881 - 890 of 1,428 for handle_ (0.08 seconds)

  1. README.md

    - **Authentication**: NTLM, Kerberos, SPNEGO unified subsystem
    - **SLF4J Logging**: Comprehensive logging throughout the codebase
    - **Resource Management**: AutoCloseable patterns for file handles and connections
    - **Thread Safety**: Components support concurrent access
    - **DFS Support**: Distributed File System resolution
    - **Streaming Operations**: Efficient directory listings and file operations
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 09:24:52 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/dfs/Referral.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Strings;
    
    /**
     * Represents a DFS (Distributed File System) referral entry containing server redirection information.
     * This class handles DFS referral responses that redirect clients to alternate servers for accessing
     * distributed file system resources, supporting multiple DFS versions and referral types.
     */
    public class Referral implements Decodable {
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  3. src/test/java/jcifs/pac/PacTest.java

            assertNotNull(e.getMessage());
        }
    
        @Test
        void testBufferOffsetOutOfBounds() throws IOException {
            // Test that out-of-bounds buffer offset is handled
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            writeLittleEndianInt(baos, 1); // bufferCount
            writeLittleEndianInt(baos, PacConstants.PAC_VERSION); // version
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  4. docs/zh/docs/how-to/custom-request-and-route.md

    这样,在传给我们的路径操作之前,`GzipRequest` 会(在需要时)负责解压数据。
    
    之后,其余处理逻辑完全相同。
    
    但由于我们修改了 `GzipRequest.body`,在 **FastAPI** 需要读取时,请求体会被自动解压。
    
    ## 在异常处理器中访问请求体 { #accessing-the-request-body-in-an-exception-handler }
    
    /// tip | 提示
    
    要解决类似问题,使用 `RequestValidationError` 的自定义处理器中的 `body` 往往更简单([处理错误](../tutorial/handling-errors.md#use-the-requestvalidationerror-body))。
    
    但本示例同样有效,并展示了如何与内部组件交互。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/base/AndroidIncompatible.java

     *       The generated suite for {@code FooTest} ends up containing {@code FooTest} itself plus some
     *       other tests. We want to exclude the other tests (which Android can't handle) while
     *       continuing to run {@code FooTest} itself. This is exactly what happens with {@code
     *       AndroidIncompatible}. But I'm not sure what would happen if we annotated the {@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 07 15:40:13 GMT 2023
    - 3.9K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/SmbBasicFileInfoTest.java

            Assertions.assertThrows(NullPointerException.class, () -> {
                // Intentionally dereference null to validate exception behavior
                // This checks that callers must handle null references defensively
                info.getSize();
            });
        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  7. internal/bucket/lifecycle/noncurrentversion.go

    }
    
    // UnmarshalXML decodes NoncurrentVersionExpiration
    func (n *NoncurrentVersionExpiration) UnmarshalXML(d *xml.Decoder, startElement xml.StartElement) error {
    	// To handle xml with MaxNoncurrentVersions from older MinIO releases.
    	// note: only one of MaxNoncurrentVersions or NewerNoncurrentVersions would be present.
    	type noncurrentExpiration struct {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Dec 14 17:41:44 GMT 2021
    - 5.3K bytes
    - Click Count (0)
  8. docs/en/docs/how-to/general.md

    ## Optimize Response Performance - Response Model - Return Type { #optimize-response-performance-response-model-return-type }
    
    To optimize performance when returning JSON data, use a return type or response model, that way Pydantic will handle the serialization to JSON on the Rust side, without going through Python. Read more in the docs for [Tutorial - Response Model - Return Type](../tutorial/response-model.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

                systemProperties.remove("saml.sp.base.url");
            }
        }
    
        @Test
        public void test_buildDefaultUrl_withTrailingSlash() throws Exception {
            // Test that trailing slash is handled correctly
            SamlAuthenticator authenticator = new SamlAuthenticator();
    
            DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  10. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy

      <developers>
        <developer>
          <name>Elastic</name>
          <url>https://www.elastic.co</url>
        </developer>
      </developers>
    </project>"""
            )
        }
    
        def "hides runtime dependencies and handles shadow dependencies"() {
            given:
            buildFile << """
                plugins {
                    id 'elasticsearch.java'
                    id 'elasticsearch.publish'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 19K bytes
    - Click Count (0)
Back to Top