- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 147 for appropriately (0.07 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java
public void testJoinTimeoutMultiInterruptExpired() { /* * We don't "need" to schedule a thread completion at all here, but by doing * so, we come the closest we can to testing that the wait time is * appropriately decreased on each progressive join() call. */ TimedThread thread = TimedThread.createWithDelay(LONG_DELAY_MS); repeatedlyInterruptTestThread(20, tearDownStack); thread.joinUnsuccessfully(70);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} return value; } /** * Extracts the filename from a URL, handling various protocols and URL decoding. * Processes HTTP, HTTPS, file, SMB, and FTP URLs appropriately. * * @param url the URL to extract filename from * @param encoding the character encoding (currently unused in this method) * @return the extracted filename, or empty string if none found */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
guava/src/com/google/common/io/CharStreams.java
} return total; } // TODO(lukes): consider allowing callers to pass in a buffer to use, some callers would be able // to reuse buffers, others would be able to size them more appropriately than the constant // defaults /** * Copies all characters between the {@link Reader} and {@link StringBuilder} objects. Does not * close or flush the reader. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 30 17:25:01 UTC 2025 - 10.9K 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) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
// We have metadata retrieval problems, or there are cycles that have been detected // so we give this back to the calling code and let them deal with this information // appropriately. if (result.hasMetadataResolutionExceptions() || result.hasVersionRangeViolations() || result.hasCircularDependencyExceptions()) { return result; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
fail("Error handling should work with edge cases: " + e.getMessage()); } } public void test_method_parameter_validation() { // Test that methods handle parameter validation appropriately // setObject should handle various inputs try { WebApiUtil.setObject("validKey", "validValue"); WebApiUtil.setObject("", "emptyKey");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 17.1K 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)