- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 503 for multiple (0.07 sec)
-
src/test/java/jcifs/EmptyIteratorTest.java
throw new RuntimeException(e); } }, "Multiple close operations should not cause issues"); // Verify iterator still works after multiple closes assertFalse(emptyIterator.hasNext(), "Iterator should still work after multiple closes"); assertNull(emptyIterator.next(), "Iterator should still return null after multiple closes"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
// Then assertNotNull(transportPool, "Transport pool should not be null"); assertSame(transportPool, context.getTransportPool(), "Should return same instance on multiple calls"); } @Test @DisplayName("getConfig should return the provided configuration") void testGetConfig() { // When Configuration config = context.getConfig();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
String[] permissions = fessUserBean.getPermissions(); assertEquals(1, permissions.length); assertEquals("read", permissions[0]); // Test with multiple permissions testUser.setPermissions(new String[] { "read", "write", "delete" }); permissions = fessUserBean.getPermissions(); assertEquals(3, permissions.length);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
authenticationManager.insert(user); assertEquals(1, chain.updateCallCount); assertEquals(user, chain.lastUpdatedUser); } // Test insert with multiple chains public void test_insert_multipleChains() { User user = createTestUser("testuser"); TestAuthenticationChain chain1 = new TestAuthenticationChain();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
## Query parameter list / multiple values { #query-parameter-list-multiple-values } When you define a query parameter explicitly with `Query` you can also declare it to receive a list of values, or said in another way, to receive multiple values. For example, to declare a query parameter `q` that can appear multiple times in the URL, you can write:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationTest.java
void testGetRequest() { // Verify getRequest returns the exact same instance SmbNegotiationRequest request = negotiation.getRequest(); assertSame(mockRequest, request); // Verify multiple calls return the same instance assertSame(request, negotiation.getRequest()); } @Test @DisplayName("getResponse should return the same response instance") void testGetResponse() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
@Nested @DisplayName("Edge Cases and Error Handling") class EdgeCaseTests { @Test @DisplayName("Should handle multiple operations correctly") void testMultipleOperations() throws NdrException { // Given: NdrShort that will be used multiple times NdrShort ndrShort = new NdrShort(50); NdrBuffer buffer1 = mock(NdrBuffer.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertNotNull(specialProvider); assertEquals(Long.valueOf(4096L), specialConfig.getTimeAdjustTimeMillisAsLong()); } // Test memory efficiency with multiple providers public void test_memoryEfficiency() { // Create and discard multiple providers for (int i = 0; i < 100; i++) { FessTimeResourceProvider tempProvider = new FessTimeResourceProvider(mockConfig);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(confPath); // Test with empty names confPath = ResourceUtil.getConfPath(); assertNotNull(confPath); // Test with multiple names confPath = ResourceUtil.getConfPath("dir1", "dir2", "file.conf"); assertNotNull(confPath); assertTrue(confPath.toString().contains("dir1"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java
assertSame(invertibleCryptographer, invertibles[i]); assertSame(oneWayCryptographer, oneWays[i]); } } // Test with multiple providers public void test_multipleProviders() { // Test that multiple providers can coexist independently InvertibleCryptographer inver1 = InvertibleCryptographer.createAesCipher("key1key1key1key1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0)