- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 125 for Clean (0.02 sec)
-
.teamcity/performance-test-durations.json
"durations" : [ { "testProject" : "largeAndroidBuild", "linux" : 501 } ] }, { "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.clean assembleDebug with clean transforms cache", "durations" : [ { "testProject" : "largeAndroidBuild", "linux" : 1659 }, { "testProject" : "nowInAndroidBuild", "linux" : 4395 }, {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Sep 08 06:58:31 UTC 2025 - 25.9K bytes - Viewed (0) -
.teamcity/performance-tests-ci.json
"coverage" : { "per_commit" : [ "linux" ] } } ] }, { "testId" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.clean assembleDebug with clean transforms cache", "groups" : [ { "testProject" : "largeAndroidBuild", "coverage" : { "per_day" : [ "linux" ] } }, { "testProject" : "nowInAndroidBuild",
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 02:18:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
@Override public void setUp() throws Exception { super.setUp(); processHelper = new ProcessHelper(); } @Override public void tearDown() throws Exception { // Clean up any running processes processHelper.destroy(); super.tearDown(); } public void test_isProcessRunning_empty() { assertFalse(processHelper.isProcessRunning()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
assertNotNull(decrypted, "Decrypted data should not be null"); assertArrayEquals(plaintext, decrypted, "Decrypted should match original"); // Clean up sensitive data Arrays.fill(plaintext, '\0'); Arrays.fill(decrypted, '\0'); } @Test public void testEncryptDecryptEmpty() throws Exception { char[] plaintext = new char[0];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
try { // Test that system property takes precedence String value = fessConfig.get(testKey); assertEquals(systemValue, value); } finally { // Clean up system property System.clearProperty(Constants.FESS_CONFIG_PREFIX + testKey); } } // Test caching mechanism public void test_get_caching() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java
// Send notification affecting the registration mockService.sendNotification(WitnessEventType.CLIENT_MOVE, "TestResource"); // Clean up mockService.unregisterWitness(regId); } @Test void testMockServiceHeartbeat() { String regId = mockService.registerWitness("\\\\server\\share", "192.168.1.100", 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java
assertNull(leaseManager.getLease(key1)); assertNull(leaseManager.getLease(key2)); assertTrue(leaseManager.getAllLeases().isEmpty()); } @Test @DisplayName("Should clean up expired leases") void testCleanupExpiredLeases() throws InterruptedException { String path = "/share/expired.txt"; int requestedState = Smb2LeaseState.SMB2_LEASE_READ_CACHING;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 13.2K bytes - Viewed (0) -
README.md
CIFSContext context = new BaseContext(config); ``` ## Development ### Build Commands ```bash # Compile the source code mvn compile # Build JAR file mvn package # Clean and rebuild mvn clean compile # Install to local repository mvn install ``` ### Testing ```bash # Run all tests (JUnit 4 based) mvn test # Run specific test class mvn test -Dtest=SpecificTest
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
Thread.currentThread().interrupt(); } } // Clean up expired weak references cleanupExpiredReferences(); // Release all leases releaseAll(); // Clear file cache fileCache.clear(); } /** * Clean up expired weak references from the file cache */ private void cleanupExpiredReferences() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
cmdList.clear(); execJob.testAddSystemProperty(cmdList, "another.non.existent", null, null); assertEquals(0, cmdList.size()); // Clean up System.clearProperty("test.property"); } // Test addFessConfigProperties method public void test_addFessConfigProperties() { List<String> cmdList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)