- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 859 for Multiple (0.04 sec)
-
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) -
docs/bucket/replication/README.md
Also note that `mc` version `RELEASE.2021-09-02T09-21-27Z` or older supports only a single remote target per bucket. To take advantage of multiple destination replication, use the latest version of `mc`
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.3K bytes - Viewed (0) -
cmd/storage-rest-server.go
return } volume := r.Form.Get(storageRESTVolume) err := s.getStorage().MakeVol(r.Context(), volume) if err != nil { s.writeErrorResponse(w, err) } } // MakeVolBulkHandler - create multiple volumes as a bulk operation. func (s *storageRESTServer) MakeVolBulkHandler(w http.ResponseWriter, r *http.Request) { if !s.IsValid(w, r) { return } volumes := strings.Split(r.Form.Get(storageRESTVolumes), ",")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 45.7K bytes - Viewed (0) -
docs/features/interceptors.md
* Observe the application's original intent. Unconcerned with OkHttp-injected headers like `If-None-Match`. * Permitted to short-circuit and not call `Chain.proceed()`. * Permitted to retry and make multiple calls to `Chain.proceed()`. * Can adjust Call timeouts using withConnectTimeout, withReadTimeout, withWriteTimeout. **Network Interceptors** * Able to operate on intermediate responses like redirects and retries.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
// Verify reserved section is zero assertEquals(0, SMBUtil.readInt4(buffer, 20)); } @Test @DisplayName("Should handle multiple sequential encodings") void testMultipleSequentialEncodings() { // Given SrvCopychunk chunk1 = new SrvCopychunk(100, 200, 300);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0)