Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 231 - 240 of 551 for netware (0.2 seconds)

  1. src/test/java/jcifs/SidResolverTest.java

            assertThrows(CIFSException.class, () -> sidResolver.getLocalGroupsMap(mockContext, testServerName, -1));
        }
    
        // Test with network errors
        @Test
        void testResolveSids_NetworkError() throws CIFSException {
            doThrow(new CIFSException("Network error occurred")).when(sidResolver)
                    .resolveSids(any(CIFSContext.class), anyString(), any(SID[].class));
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 15.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            // Then
            assertEquals(cause, exception.getCause());
            assertEquals(SmbOperationException.ErrorCategory.NETWORK, exception.getErrorCategory());
            assertTrue(exception.isRetryable());
        }
    
        @Test
        @DisplayName("Should handle retry policy correctly")
        void testRetryPolicy() {
            // Given
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 16.1K bytes
    - Click Count (0)
  3. docs/en/docs/advanced/advanced-dependencies.md

    The intention was to avoid holding resources for longer than necessary, waiting for the response to travel through the network.
    
    This change also meant that if you returned a `StreamingResponse`, the exit code of the dependency with `yield` would have been already run.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9K bytes
    - Click Count (0)
  4. docs/distributed/README.md

    MinIO in distributed mode can help you setup a highly-available storage system with a single object storage deployment. With distributed MinIO, you can optimally use storage devices, irrespective of their location in a network.
    
    ### Data protection
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/CallServerInterceptor.kt

    import okhttp3.internal.UnreadableResponseBody
    import okhttp3.internal.http2.ConnectionShutdownException
    import okhttp3.internal.skipAll
    import okio.buffer
    
    /** This is the last interceptor in the chain. It makes a network call to the server. */
    object CallServerInterceptor : Interceptor {
      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val realChain = chain as RealInterceptorChain
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Oct 30 13:46:58 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/response-status-code.md

        * 例如 `404`,代表「找不到」。
        * 對於一般性的用戶端錯誤,你可以使用 `400`。
    * `500 - 599` 表示伺服器錯誤。你幾乎不會直接使用它們。當你的應用程式或伺服器某處出錯時,會自動回傳其中一個狀態碼。
    
    /// tip | 提示
    
    想深入瞭解各狀態碼與其用途,請參考 [<abbr title="Mozilla Developer Network - Mozilla 開發者網路">MDN</abbr> 關於 HTTP 狀態碼的文件](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status)。
    
    ///
    
    ## 快速記住名稱 { #shortcut-to-remember-the-names }
    
    再看一次前面的範例:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

      private val handshakeCertificates = platform.localhostHandshakeCertificates()
    
      /**
       * Test that we can override in a Application Interceptor, purely by seeing that the chain reports
       * the override in a Network Interceptor.
       */
      @Test
      fun testOverrideInApplicationInterceptor(
        override: OverrideParam =
          burstValues(
            OverrideParam.Authenticator,
            OverrideParam.Cache,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.24.md

    - Service session affinity timeout tests are no longer required for Kubernetes network plugin conformance due to variations in existing implementations. New conformance tests will be developed to better express conformance in future releases. ([#112806](https://github.com/kubernetes/kubernetes/pull/112806), [@dcbw](https://github.com/dcbw)) [SIG Architecture, Network and Testing]
    
    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Aug 24 00:02:43 GMT 2023
    - 473.4K bytes
    - Click Count (0)
  9. docs/ko/docs/how-to/custom-docs-ui-assets.md

    기본적으로 이러한 파일은 <abbr title="Content Delivery Network - 콘텐츠 전송 네트워크: 일반적으로 여러 서버로 구성되어 JavaScript와 CSS 같은 정적 파일을 제공하는 서비스입니다. 보통 클라이언트에 더 가까운 서버에서 파일을 제공해 성능을 향상시키는 데 사용됩니다.">CDN</abbr>에서 제공됩니다.
    
    하지만 이를 커스터마이징할 수 있으며, 특정 CDN을 지정하거나 파일을 직접 제공할 수도 있습니다.
    
    ## JavaScript와 CSS용 커스텀 CDN { #custom-cdn-for-javascript-and-css }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  10. guava-tests/test/com/google/common/graph/PackageSanityTests.java

        setDistinctValues(MutableNetwork.class, mutableNetworkA, mutableNetworkB);
        setDistinctValues(NetworkBuilder.class, networkBuilderA, networkBuilderB);
        setDistinctValues(Network.class, IMMUTABLE_NETWORK_A, IMMUTABLE_NETWORK_B);
        setDefault(EndpointPair.class, EndpointPair.ordered("A", "B"));
      }
    
      @Override
      public void testNulls() throws Exception {
        try {
          super.testNulls();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 28 01:26:26 GMT 2024
    - 3.2K bytes
    - Click Count (0)
Back to Top