- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 192 for persist (0.07 seconds)
-
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)
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jul 04 12:50:13 GMT 2025 - 5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java
* invocations of Maven. */ public interface BuildResumptionDataRepository { /** * Persists any data needed to resume the build at a later point in time, using a new Maven invocation. This method * may also decide it is not needed or meaningful to persist such data, and return <code>false</code> to indicate * so. * * @param rootProject The root project that is being built.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (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 }}Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 04:24:24 GMT 2025 - 12.2K bytes - Click Count (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) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 13K bytes - Click Count (0) -
.github/workflows/update-jdks.yml
permissions: contents: write pull-requests: write runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 - name: Update jdks.yaml uses: gradle/update-jdks-action@main - name: Add verification comment # https://github.com/gradle/gradle-private/issues/4518Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 09 22:14:16 GMT 2025 - 2.1K bytes - Click Count (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() {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 12.6K bytes - Click Count (0) -
.github/workflows/scorecards-analysis.yml
id-token: write 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: sarifCreated: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Mon Dec 01 09:57:00 GMT 2025 - 2.6K bytes - Click Count (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: sarifCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Dec 01 19:32:55 GMT 2025 - 2.9K bytes - Click Count (0) -
docs/features/caching.md
## Cache directory The cache directory must be exclusively owned by a single instance. Deleting the cache when it is no longer needed can be done. However this may delete the purpose of the cache which is designed to persist between app restarts. ```kotlin cache.delete() ``` ## Pruning the Cache Pruning the entire Cache to clear space temporarily can be done using evictAll. ```kotlin cache.evictAll() ```
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 02:19:09 GMT 2022 - 3.1K bytes - Click Count (1) -
internal/store/store.go
var ErrNotConnected = errors.New("not connected to target server/service") // Target - store target interface type Target interface { Name() string SendFromStore(key Key) error } // Store - Used to persist items. type Store[I any] interface { Put(item I) (Key, error) PutMultiple(item []I) (Key, error) Get(key Key) (I, error) GetMultiple(key Key) ([]I, error) GetRaw(key Key) ([]byte, error)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 4.2K bytes - Click Count (0)