- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 284 for Merge (0.14 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Sep 25 17:39:57 GMT 2025 - 14.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.model.merge; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.apache.maven.model.BuildBase;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
modelRequest.setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MINIMAL); modelRequest.setProcessPlugins(false); modelRequest.setTwoPhaseBuilding(false); // This merge is on purpose because otherwise user properties would override model // properties in dependencies the user does not know. See MNG-7563 for details. modelRequest.setSystemProperties(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 17.1K bytes - Click Count (0) -
cmd/postpolicyform.go
// are merged together into a single JSON key, also // to remove any extraneous JSON bodies. // // Go stdlib doesn't support parsing JSON with duplicate // keys, so we need to use this technique to merge the // keys. func sanitizePolicy(r io.Reader) (io.Reader, error) { var buf bytes.Buffer e := json.NewEncoder(&buf) d := jstream.NewDecoder(r, 0).ObjectAsKVS().MaxDepth(10) sset := set.NewStringSet()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Oct 23 15:10:12 GMT 2025 - 12.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableRangeMap.java
* @deprecated Unsupported operation. * @since 28.1 */ @Deprecated @Override @DoNotCall("Always throws UnsupportedOperationException") public final void merge( Range<K> range, @Nullable V value, BiFunction<? super V, ? super @Nullable V, ? extends @Nullable V> remappingFunction) { throw new UnsupportedOperationException(); } @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 14.8K bytes - Click Count (0) -
.github/workflows/maven.yml
needs: - full-build - integration-tests steps: - name: Download Caches uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: merge-multiple: true pattern: 'cache-${{ runner.os }}*' path: ${{ env.MIMIR_LOCAL }} - name: Publish cache uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Mar 24 08:21:28 GMT 2026 - 12.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java
previousMetadata.put(remoteRepository, metadata); } if (repoMetadata.getMetadata() != null) { setRepository = repoMetadata.getMetadata().merge(metadata); } else { repoMetadata.setMetadata(metadata); setRepository = true; } } return setRepository; } /*
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 18.9K bytes - Click Count (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
<code><![CDATA[ private String getSnapshotVersionKey( SnapshotVersion sv ) { return sv.getClassifier() + ":" + sv.getExtension(); } public boolean merge( Metadata sourceMetadata ) { boolean changed = false; for ( Plugin plugin : sourceMetadata.getPlugins() ) { boolean found = false;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed May 15 17:32:27 GMT 2024 - 15.8K bytes - Click Count (0) -
compat/maven-model-builder/src/site/apt/index.apt
with its <<<DefaultModelValidator>>> implementation ({{{./xref/org/apache/maven/model/validation/DefaultModelValidator.html}source}}) ** model normalization - merge duplicates: <<<ModelNormalizer>>> ({{{./apidocs/org/apache/maven/model/normalization/ModelNormalizer.html}javadoc}}), with its <<<DefaultModelNormalizer>>> implementation
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 03 08:42:52 GMT 2025 - 13.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
@Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); indexUpdateCallback = new FileListIndexUpdateCallbackImpl(null, null, 1); } /** Case 1: Normal merge (no duplicates) */ @Test public void test_mergeResponseData_noOverwrite() { Map<String, Object> dataMap = new HashMap<>(); dataMap.put("a", "A0");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0)