- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 73 for appropriately (0.06 sec)
-
cmd/dynamic-timeouts_test.go
} adjusted := timeout.Timeout() // Check whether eventual timeout is between initial value and success timeout if initial <= adjusted || adjusted <= successTimeout { t.Errorf("Failure to decrease timeout appropriately") } } func TestDynamicTimeoutConcurrent(t *testing.T) { // Race test. timeout := newDynamicTimeout(time.Second, time.Millisecond) var wg sync.WaitGroup for i := 0; i < runtime.GOMAXPROCS(0); i++ {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/https/HandlerTest.java
assertEquals(URLStreamHandler.class, superclass.getSuperclass()); } @Test @DisplayName("Should verify class is final or non-final appropriately") void testClassModifiers() { // When int modifiers = Handler.class.getModifiers(); // Then assertTrue(Modifier.isPublic(modifiers));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/orchestration/docker-compose/README.md
* There are 4 minio distributed instances created by default. You can add more MinIO services (up to total 16) to your MinIO Compose deployment. To add a service * Replicate a service definition and change the name of the new service appropriately. * Update the command section in each service. * Add a new MinIO server instance to the upstream directive in the Nginx configuration file.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/https/HandlerTest.java
assertEquals(URLStreamHandler.class, superclass.getSuperclass()); } @Test @DisplayName("Should verify class is final or non-final appropriately") void testClassModifiers() { // When int modifiers = Handler.class.getModifiers(); // Then assertTrue(Modifier.isPublic(modifiers));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
} } @Mock DfsReferralData dfs; @Mock Address addr; @Test @DisplayName("Mockito interaction – dependent objects are called appropriately") void testInteractionsWithStubbedDependencies() throws Exception { String url = "smb://server/share/"; DummySmbResourceLocator loc = new DummySmbResourceLocator(url);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
// Notify waiting threads of failure if the operation supports it if (op instanceof CommonServerMessageBlock) { // Handle operation failure appropriately notifyOperationFailure(op, e); } } } } private void notifyOperationFailure(CommonServerMessageBlock op, Exception error) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
final KeyParameter keyParam = new KeyParameter(keyCopy); // CCMBlockCipher requires nonce length between 7 and 13 // Use the nonce directly if it's 12 bytes (generated appropriately) final byte[] adjustedNonce; if (nonce.length == 12) { adjustedNonce = nonce; } else { // Fallback for compatibility
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
ComponentUtil.setFessConfig(fessConfig); // Execute String result = purgeLogJob.execute(); // Assert services were called appropriately assertTrue(deleteCrawlingInfoCalled[0]); assertTrue(deleteSearchLogCalled[0]); assertFalse(deleteJobLogCalled[0]); assertTrue(deleteUserInfoCalled[0]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
docs/bigdata/README.md
## **4. Run Sample Applications** After installing Hive, Hadoop and Spark successfully, we can now proceed to run some sample applications to see if they are configured appropriately. We can use Spark Pi and Spark WordCount programs to validate our Spark installation. We can also explore how to run Spark jobs from the command line and Spark shell. ### **4.1 Spark Pi**
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 14.7K bytes - Viewed (0) -
docs/sts/ldap.md
export MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER='(&(objectclass=groupOfNames)(member=%d))' minio server ~/test ``` You can make sure it works appropriately using our [example program](https://raw.githubusercontent.com/minio/minio/master/docs/sts/ldap.go): ``` $ go run ldap.go -u foouser -p foopassword ##### Credentials {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0)