- Sort Score
- Result 10 results
- Languages All
Results 551 - 560 of 880 for multiples (0.07 sec)
-
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
assertEquals("POST", webApiRequest.getMethod()); assertEquals("/test/uri", webApiRequest.getRequestURI()); assertEquals(testHeaderValue, webApiRequest.getHeader(testHeader)); } // Test multiple calls to getServletPath public void test_getServletPath_multipleCallsReturnSameResult() { final String customPath = "/api/v1/consistent"; mockRequest.setQueryString("query=test");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeBasedTable.java
* row(rowKey)} and {@code rowMap().get(rowKey)} are {@link SortedMap} instances, instead of the * {@link Map} specified in the {@link Table} interface. * * <p>Note that this implementation is not synchronized. If multiple threads access this table * concurrently and one of the threads modifies the table, it must be synchronized externally. * * <p>See the Guava User Guide article on <a href=
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java
return buffer; } } @Nested @DisplayName("Integration Tests") class IntegrationTests { @Test @DisplayName("Should maintain state after multiple reads") void testMultipleReads() throws SMBProtocolDecodingException { // First read byte[] buffer1 = createValidWriteResponse(1024, 512); response.readBytesWireFormat(buffer1, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
when(baseLeaseManager.requestLease(dir3, DirectoryLeaseState.DIRECTORY_FULL)).thenReturn(key3); // Request leases for multiple directories directoryLeaseManager.requestDirectoryLease(dir1, DirectoryLeaseState.DIRECTORY_READ_HANDLE, DirectoryCacheScope.IMMEDIATE_CHILDREN);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
} @Test @DisplayName("Should support multiple method invocations") void shouldSupportMultipleInvocations() { ACE ace = mock(ACE.class); when(ace.getAccessMask()).thenReturn(ACE.GENERIC_ALL); when(ace.isAllow()).thenReturn(true); // Multiple calls to same method ace.getAccessMask(); ace.getAccessMask();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
* .addCopies(Bean.RED, 8) * .addCopies(Bean.BLACK_EYED, 10) * .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple multisets in series. * * @since 2.0 */ public static class Builder<E> extends ImmutableCollection.Builder<E> { final Multiset<E> contents; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
assertEquals(999, item2.getId()); ProtwordsItem item3 = new ProtwordsItem(-1, "word"); assertEquals(-1, item3.getId()); } public void test_multipleUpdates() { // Test multiple updates to newInput ProtwordsItem item = new ProtwordsItem(1, "original"); assertFalse(item.isUpdated()); assertFalse(item.isDeleted()); item.setNewInput("first");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
} // ensures that the number of invocations looks sane void assertInvariants(int expectedBytes) { // we should have seen as many bytes as the next multiple of chunk after expectedBytes - 1 assertEquals(out.toByteArray().length, ceilToMultiple(expectedBytes, chunkSize)); assertEquals(expectedBytes / chunkSize, processCalled);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
int bytesRead = request.readBytesWireFormat(buffer, offset); // Then assertEquals(0, bytesRead, "Cancel requests do not read response data"); } @Test @DisplayName("Test multiple property settings") void testMultiplePropertySettings() { // Given long mid = 99999L; long asyncId = 88888L; int credits = 5; int treeId = 77; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/sts/ldap.md
</Credentials> </AssumeRoleWithLDAPIdentity> <ResponseMetadata/> </AssumeRoleWithLDAPIdentityResponse> ``` ## Using LDAP STS API With multiple OU hierarchies for users, and multiple group search base DN's. ``` export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio123 export MINIO_IDENTITY_LDAP_SERVER_ADDR='my.ldap-active-dir-server.com:636'
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0)