- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 93 for persist (0.04 sec)
-
impl/maven-core/src/test/java/org/apache/maven/project/PluginConnectionSimpleTest.java
// This would create a disconnected Plugin that doesn't persist changes. // The new fixed implementation does: // Find the plugin in the connected plugins list Plugin connectedPlugin = project.getPlugin("org.apache.maven.plugins:maven-surefire-plugin"); assertNotNull(connectedPlugin, "Plugin should be found"); // Test that modifications persist (this would fail with the old implementation)
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jul 04 12:50:13 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
StandardOpenOption.WRITE, StandardOpenOption.TRUNCATE_EXISTING))) { oos.writeObject(info); log.debug("Persisted handle: {}", info.getPath()); } catch (IOException e) { log.error("Failed to persist handle: " + info.getPath(), e); } } private void removePersistedHandle(HandleInfo info) { if (info.getType() != HandleType.PERSISTENT) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
.github/workflows/maven.yml
with: java-version: 17 distribution: 'temurin' - name: Checkout maven uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: persist-credentials: false - name: Prepare Mimir for Maven 3.x shell: bash run: | mkdir -p ${{ env.MIMIR_BASEDIR }}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 04:24:24 UTC 2025 - 12.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java
assertEquals( "custom-output", persistedResource.getTargetPath(), "targetPath should persist after resource retrieval"); assertTrue(persistedResource.getIncludes().contains("*.properties"), "Include should persist with targetPath"); } /*MNG-11062*/ @Test void testTargetPathEdgeCases() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 12.6K bytes - Viewed (0) -
.github/workflows/scorecard.yml
# contents: read # actions: read steps: - name: "Checkout code" uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: "Run analysis" uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3 with: results_file: results.sarif results_format: sarifRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Dec 01 19:32:55 UTC 2025 - 2.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
* <p> * The request-scoped retention policy ensures that: * <ul> * <li>Changes to the POM file during the build are detected</li> * <li>Cache entries don't persist beyond the current build request</li> * <li>Memory is freed once the build request completes</li> * </ul> */ static class BuildPathSource extends PathSource implements ModelSource, CacheMetadata {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 8.2K bytes - Viewed (0) -
README.md
[some annotation-only dependencies][guava-deps], which we discuss in more detail at that link. 4. Serialized forms of ALL objects are subject to change unless noted otherwise. Do not persist these and assume they can be read by a future version of the library. 5. Our classes are not designed to protect against a malicious caller. YouRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 16 22:01:32 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
// Reset and verify transformer.reset(); assertEquals(0, transformer.getTransformCallCount()); assertNull(transformer.getLastResponseData()); // Name should persist after reset assertEquals("workflowTransformer", transformer.getName()); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hashing.java
hashFunctions[i] = murmur3_128(seed); } return new ConcatenatedHashFunction(hashFunctions); } /** * Used to randomize {@link #goodFastHash} instances, so that programs which persist anything * dependent on the hash codes they produce will fail sooner. */ @SuppressWarnings("GoodTime") // reading system time without TimeSource static final int GOOD_FAST_HASH_SEED = (int) System.currentTimeMillis();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.8K bytes - Viewed (0)