Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 409 for dangling (0.05 sec)

  1. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java

            // Test state after reset
            response.reset();
            // After reset, hasMore should be true again
            assertTrue(response.hasMoreElements());
        }
    
        @Test
        @DisplayName("Test data handling with various sizes")
        void testDataHandlingWithVariousSizes() {
            // Test with small data count
            response.setDataCount(10);
            assertEquals(10, response.getDataCount());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  2. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java

    /**
     * Comprehensive service interface for XML operations including node creation,
     * merging, reading, and writing.
     *
     * <p>This class provides XML merging functionality for Maven's XML handling
     * and specifies the combination modes that control how XML elements are merged.</p>
     *
     * <p>The merger supports two main types of combinations:</p>
     * <ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmContext.java

                        this.auth.getUsername(), this.workstation, this.ntlmsspFlags);
            }
    
            // Use secure password handling
            String passwordString = null;
            if (this.auth.isGuest()) {
                passwordString = this.transportContext.getConfig().getGuestPassword();
            } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SpnegoContextTest.java

    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    
    /**
     * Tests for SpnegoContext focusing on delegation, error handling, and edge cases.
     */
    @ExtendWith(MockitoExtension.class)
    class SpnegoContextTest {
    
        @Mock
        Configuration config;
    
        @Mock
        SSPContext mechContext;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            return buildFromRepository(artifact, remoteRepositories, localRepository, true);
        }
    
        /**
         * This is used for pom-less execution like running archetype:generate. I am taking out the profile handling and the
         * interpolation of the base directory until we spec this out properly.
         */
        @Override
        public MavenProject buildStandaloneSuperProject(ProjectBuilderConfiguration configuration)
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    It could be another container, for example with <a href="https://traefik.io/" class="external-link" target="_blank">Traefik</a>, handling **HTTPS** and **automatic** acquisition of **certificates**.
    
    /// tip
    
    Traefik has integrations with Docker, Kubernetes, and others, so it's very easy to set up and configure HTTPS for your containers with it.
    
    ///
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  7. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            assertEquals(user1, chain.updateCalls.get(0));
            assertEquals(user2, chain.updateCalls.get(1));
            assertEquals(user3, chain.updateCalls.get(2));
        }
    
        // Test update with exception handling
        public void test_update_withException() {
            TestAuthenticationChain chain = new TestAuthenticationChain();
            chain.updateThrowsException = true;
            User user = createTestUser("testuser", "Test User");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java

            response2.readParametersWireFormat(buffer, 0, 6);
            assertEquals(0xFFFF, response2.getAvailable());
        }
    
        @Test
        @DisplayName("Test large buffer handling")
        void testLargeBufferHandling() {
            // Arrange
            byte[] largeBuffer = new byte[65536]; // 64KB buffer
    
            // Act & Assert
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SmbEnumerationUtilTest.java

                assertNull(unwrapped);
            }
        }
    
        @Nested
        @DisplayName("Exception handling tests")
        class ExceptionHandlingTests {
    
            @Test
            @DisplayName("doEnum rethrows CIFSException when not UnknownHostException")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

            * [Install custom exception handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#install-custom-exception-handlers).
            * [Override the default exception handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#override-the-default-exception-handlers).
            * [Reuse **FastAPI's** exception handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#reuse-fastapis-exception-handlers).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top