- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 109 for MERGED (0.04 sec)
-
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java
* merging, reading, and writing. * * <p>This class provides XML merging functionality for Maven's XML handling * and specifies the combination modes that control how XML elements are merged.</p> * * <p>The merger supports two main types of combinations:</p> * <ul> * <li>Children combination: Controls how child elements are combined</li>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 9.2K bytes - Viewed (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);
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Mon Oct 18 23:04:59 UTC 2021 - 2.8K bytes - Viewed (0) -
doc/README.md
new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to the CL (or ask the author to do so). At the end of the development cycle, the files will be merged by being concatenated in sorted order by pathname. Files in the directory matching the glob "*stdlib/*minor" are treated specially. They should be in subdirectories
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Jul 22 17:55:04 UTC 2024 - 3.1K bytes - Viewed (0) -
internal/grid/connection.go
} merged = merged[:0] m := message{Op: OpMerged, Seq: uint32(len(queue))} var err error merged, err = m.MarshalMsg(merged) if err != nil { gridLogIf(ctx, fmt.Errorf("msg.MarshalMsg: %w", err)) return } // Append as byte slices. for _, q := range queue { merged = msgp.AppendBytes(merged, q) PutByteBuffer(q) } queue = queue[:0]Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 46.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java
Settings recessive = Settings.newBuilder() .pluginGroups(Arrays.asList("org.codehaus.plexus")) .build(); Settings merged = SettingsUtilsV4.merge(dominant, recessive); List<String> pluginGroups = merged.getPluginGroups(); assertNotNull(pluginGroups); assertEquals(3, pluginGroups.size()); assertEquals("org.apache.maven.plugins", pluginGroups.get(0));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 6.7K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/pom.xml
<artifactId>parent</artifactId> <version>0.1</version> <packaging>pom</packaging> <name>Maven Integration Test :: MNG-3906</name> <description> Test that project-level plugin dependencies are properly merged during inheritance. </description> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.its.plugins</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml
<artifactId>parent</artifactId> <version>0.1</version> <packaging>pom</packaging> <name>Maven Integration Test :: MNG-3899</name> <description> Test that build extensions are properly merged during inheritance. </description> <build> <extensions> <extension> <groupId>org.apache.maven.its.mng3899</groupId> <artifactId>a</artifactId> <version>0.1</version>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml
<version>0.1</version> </parent> <artifactId>child</artifactId> <name>Maven Integration Test :: MNG-3899</name> <description> Test that build extensions are properly merged during inheritance. </description> <build> <!-- project extensions should precede inherited extensions --> <extensions> <extension> <groupId>org.apache.maven.its.mng3899</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/pom.xml
<version>0.1</version> </parent> <artifactId>child</artifactId> <name>Maven Integration Test :: MNG-3906</name> <description> Test that project-level plugin dependencies are properly merged during inheritance. </description> <build> <plugins> <plugin> <groupId>org.apache.maven.its.plugins</groupId> <artifactId>maven-it-plugin-class-loader</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
internal/hash/crc.go
// The size of the content that produced the second checksum must be provided. // Not all checksum types can be merged, use the CanMerge method to check. // Checksum types must match. func (c *Checksum) AddPart(other Checksum, size int64) error { if !other.Type.CanMerge() { return fmt.Errorf("checksum type cannot be merged") } if size == 0 { return nil } if !c.Type.Is(other.Type.Base()) {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 5.8K bytes - Viewed (0)