- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 471 for merged (0.05 seconds)
-
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/merge/MavenSettingsMerger.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.settings.merge; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.maven.settings.IdentifiableBase; import org.apache.maven.settings.Settings; /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java
/** * @param dominant * @param recessive * @param recessiveSourceLevel */ public static void merge(Settings dominant, Settings recessive, String recessiveSourceLevel) { if (dominant != null && recessive != null) { dominant.delegate = SettingsUtilsV4.merge(dominant.getDelegate(), recessive.getDelegate()); } } /** * @param modelProfile * @return a profileCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 2.3K bytes - Click Count (0) -
helm-reindex.sh
#!/bin/bash helm package helm/minio -d helm-releases/
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 20 22:30:54 GMT 2021 - 121 bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
.collect(Collectors.toMap( DefaultConsumerPomBuilder::getDependencyKey, Function.identity(), this::merge, LinkedHashMap::new)); Map<String, Dependency> managedDependencies = model.getDependencyManagement().getDependencies().stream() .filter(dependency ->
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 27 07:40:26 GMT 2025 - 21.2K bytes - Click Count (0) -
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Consumer.java
* <p> * A type can be marked {@link Consumer} or {@link Provider} but not both. A type is assumed to be * {@link Consumer} if it is not marked either {@link Consumer} or {@link Provider}. * <p> * A package can be marked {@link Consumer}. In this case, all types in the package are considered * to be a provider type regardless of whether they are marked {@link Consumer} or {@link Provider}. * * @see ProviderCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 10 21:43:27 GMT 2024 - 1.8K bytes - Click Count (0) -
LICENSE
of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed May 07 12:40:53 GMT 2025 - 23.1K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.22.md
## Changelog since v1.22.7 ## Changes by Kind ### API Change
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Tue Dec 13 12:43:45 GMT 2022 - 454.1K bytes - Click Count (0) -
.github/workflows/stale-issues.yml
with: #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale exempt-issue-labels: 'override-stale' #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale exempt-pr-labels: "override-stale" #Limit the No. of API calls in one run default value is 30.Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Nov 01 08:08:54 GMT 2025 - 4.1K bytes - Click Count (0) -
clause/locking.go
builder.WriteString(" OF ") builder.WriteQuoted(locking.Table) } if locking.Options != "" { builder.WriteByte(' ') builder.WriteString(locking.Options) } } // MergeClause merge order by clauses func (locking Locking) MergeClause(clause *Clause) { clause.Expression = locking
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Fri Dec 15 08:32:56 GMT 2023 - 773 bytes - Click Count (0) -
clause/insert.go
builder.WriteByte(' ') } builder.WriteString("INTO ") if insert.Table.Name == "" { builder.WriteQuoted(currentTable) } else { builder.WriteQuoted(insert.Table) } } // MergeClause merge insert clause func (insert Insert) MergeClause(clause *Clause) { if v, ok := clause.Expression.(Insert); ok { if insert.Modifier == "" { insert.Modifier = v.Modifier } if insert.Table.Name == "" {
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Mon Mar 09 09:07:00 GMT 2020 - 767 bytes - Click Count (0)