- Sort Score
- Num 10 results
- Language All
Results 281 - 290 of 367 for merge (0.04 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/ModelNormalizer.java
*/ @Deprecated(since = "4.0.0") public interface ModelNormalizer { /** * Merges duplicate elements like multiple declarations of the same build plugin in the specified model. * * @param model The model whose duplicate elements should be merged, must not be {@code null}. * @param request The model building request that holds further settings, must not be {@code null}.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
return ZENKAKU_KATAKANA[c - HANKAKU_KATAKANA_FIRST_CHAR]; } return c; } /** * Merges two characters, handling voiced and semi-voiced sound marks. * @param c1 The first character. * @param c2 The second character. * @return The merged character. */ public static char mergeChar(final char c1, final char c2) { if (c2 == '゙') {
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:23:01 GMT 2025 - 6.8K bytes - Click Count (1) -
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) -
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) -
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) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingResult.java
import java.util.ArrayList; import java.util.List; import org.apache.maven.building.Problem; import org.apache.maven.toolchain.model.PersistedToolchains; /** * Holds the result of the merged toolchains and holds the problems during this build, if any. * * @since 3.3.0 * @deprecated since 4.0.0, use {@code org.apache.maven.api.services.ToolchainsBuilder} instead */ @Deprecated(since = "4.0.0")Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 2K bytes - Click Count (0) -
.github/workflows/create_issue.js
console.log(`PR:{pr_number} is not found or closed. Not a valid condition to create an issue.`); console.log(pr_resp); throw `PR:{pr_number} needs to be valid and closed (merged)`; } const pr_title = pr_resp.data.title; // Assign to PR owner and reviewers const assignees = pr_resp.data.assignees.concat(pr_resp.data.requested_reviewers); let assignee_logins = assignees.map(x => x.login);
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Oct 18 23:04:59 GMT 2021 - 2.8K bytes - Click Count (0) -
docs/en/data/topic_repos.yml
stars: 6064 owner_login: fastapi-users owner_html_url: https://github.com/fastapi-users - name: serge html_url: https://github.com/serge-chat/serge stars: 5738 owner_login: serge-chat owner_html_url: https://github.com/serge-chat - name: Yuxi html_url: https://github.com/xerrors/Yuxi stars: 4761 owner_login: xerrors owner_html_url: https://github.com/xerrors
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 12:36:41 GMT 2026 - 16K bytes - Click Count (0) -
RELEASE.md
* Added support for weight decay in most TPU embedding optimizers, including AdamW and MomentumW. * TensorFlow 2.0 Development * Add a command line tool to convert to TF2.0, tf_upgrade_v2 * Merge `tf.spectral` into `tf.signal` for TensorFlow 2.0. * Change the default recurrent activation function for LSTM from 'hard_sigmoid' to 'sigmoid' in 2.0. Historically recurrent activation isCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
guava/src/com/google/common/collect/TreeBasedTable.java
Iterator<C> merged = mergeSorted( transform(backingMap.values(), (Map<C, V> input) -> input.keySet().iterator()), comparator); return new AbstractIterator<C>() { @Nullable C lastValue; @Override protected @Nullable C computeNext() { while (merged.hasNext()) { C next = merged.next();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jul 18 15:05:43 GMT 2025 - 11.6K bytes - Click Count (0)