- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 73 for mergeId (0.08 seconds)
-
api/maven-api-model/src/main/mdo/maven.mdo
<type>String</type> </field> <field xml.transient="true"> <name>mergeId</name> <version>4.0.0</version> <description> FOR INTERNAL USE ONLY. This is a unique identifier assigned to each resource to allow Maven to merge changes to this resource that take place during the execution of a plugin. This field must be managed
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 17 09:48:21 GMT 2026 - 133.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItemMerger.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 5.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemMergerTest.java
SuggestItem item2 = createItem("text", 20L, 15L, 2.0f); SuggestItem merged = SuggestItemMerger.merge(item1, item2); assertNotNull(merged); assertEquals(30L, merged.getDocFreq()); // 10 + 20 assertEquals(20L, merged.getQueryFreq()); // 5 + 15 assertEquals(2.0f, merged.getUserBoost(), 0.001f); // max(1.0, 2.0) } @Test public void testMerge_tags() {
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
} /** * Merges two suggest items. * @param item1 The first suggest item. * @param item2 The second suggest item. * @return The merged suggest item. */ public static SuggestItem merge(final SuggestItem item1, final SuggestItem item2) { return SuggestItemMerger.merge(item1, item2); } /**Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 13.5K bytes - Click Count (0) -
.teamcity/scripts/CheckBadMerge.java
* but sometimes changes on release notes.md was brought to master and merged unnoticed, * e.g https://github.com/gradle/gradle/pull/25825 * * This script is to check if there is any merge commit that brings changes from release branch to master. * * Usage (Java 11+ single-file source execution): * java .teamcity/scripts/CheckBadMerge.java < commits.txt * * If any "bad" merge commit is found, it will print the details and exit with non-zero code.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 22 12:18:18 GMT 2026 - 10K bytes - Click Count (0) -
docs/en/docs/management-tasks.md
If the tests are passing, you can merge it right away. ## Dependabot PRs Dependabot will create PRs to update dependencies for several things, and those PRs all look similar, but some are way more delicate than others.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:59:26 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItemSerializer.java
* Creates an updated source map by merging the item with existing source. * * @param item The SuggestItem with new data * @param existingSource The existing source map from OpenSearch * @return A merged source map */ public static Map<String, Object> toUpdatedSource(final SuggestItem item, final Map<String, Object> existingSource) { final Map<String, Object> map = new HashMap<>();Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 13.5K bytes - Click Count (0) -
CONTRIBUTING.md
things you should know about contributing: 1. API changes require discussion, use cases, etc. Code comes later. 2. Pull requests are great for small fixes for bugs, documentation, etc. 3. Pull requests are not merged directly into the master branch. 4. Code contributions require signing a Google CLA. API changes ----------- We make changes to Guava's public [APIs][], including adding new APIs, very
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 17:53:05 GMT 2026 - 4.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
@J2ktIncompatible @GwtIncompatible // used only in GwtIncompatible tests private interface Merger { ListenableFuture<List<String>> merged(ListenableFuture<String> a, ListenableFuture<String> b); Merger allMerger = new Merger() { @Override public ListenableFuture<List<String>> merged( ListenableFuture<String> a, ListenableFuture<String> b) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0)