- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 202 for Child (0.01 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/ModelUtils.java
@Deprecated public final class ModelUtils { /** * This should be the resulting ordering of plugins after merging: * <p> * Given: * <pre> * parent: X -> A -> B -> D -> E * child: Y -> A -> C -> D -> F * </pre> * Result: * <pre> * X -> Y -> A -> B -> C -> D -> E -> F * </pre> */ public static void mergePluginLists(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java
} } } return null; } private static String mayGetChild(XmlNode node, String child) { XmlNode c = node.child(child); if (c != null) { return c.value(); } return null; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-module.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1015 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
} public void testLocationEquals() { ClassLoader child = getClass().getClassLoader(); ClassLoader parent = child.getParent(); new EqualsTester() .addEqualityGroup( new ClassPath.LocationInfo(new File("foo.jar"), child), new ClassPath.LocationInfo(new File("foo.jar"), child)) .addEqualityGroup(new ClassPath.LocationInfo(new File("foo.jar"), parent))
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 21:00:51 UTC 2025 - 23K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
* * <h4>Limited Inference for 4.0.0 Models (Maven 3.x POMs)</h4> * <ul> * <li><strong>Child GroupId Removal</strong>: Removes child {@code <groupId>} when it matches parent groupId</li> * <li><strong>Child Version Removal</strong>: Removes child {@code <version>} when it matches parent version</li> * </ul> * * <h4>Full Inference for 4.1.0+ Models</h4> * <ul>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java
/** Indicates processing a response. */ PROCESS_RESPONSE, /** Indicates the crawling process has finished. */ FINISHED_CRAWLING, /** Indicates processing child URLs due to an exception. */ PROCESS_CHILD_URLS_BY_EXCEPTION, /** Indicates processing a child URL due to an exception. */ PROCESS_CHILD_URL_BY_EXCEPTION, /** Indicates an access exception during crawling. */ CRAWLING_ACCESS_EXCEPTION,Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/inheritance/DefaultModelInheritanceAssembler.java
public class DefaultModelInheritanceAssembler implements ModelInheritanceAssembler { @Override public void assembleModelInheritance(Model child, Model parent, String childPathAdjustment) { throw new UnsupportedOperationException(); } @Override public void assembleModelInheritance(Model child, Model parent) { throw new UnsupportedOperationException(); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t12/ProjectInheritanceTest.java
import static org.junit.jupiter.api.Assertions.assertNull; /** * Verifies that plugin execution sections in the parent POM that have * inherit == false are not inherited to the child POM. */ @Deprecated class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase { // ---------------------------------------------------------------------- // // p1 inherits from p0Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue May 27 13:59:13 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java
Element root = editor.root(); if (root == null) { return MODEL_VERSION_4_0_0; } // First try to get from modelVersion element Element modelVersionElement = root.child(MODEL_VERSION).orElse(null); if (modelVersionElement != null) { String modelVersion = modelVersionElement.textContentTrimmed(); if (!modelVersion.isEmpty()) { return modelVersion;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
assertNotNull(child, "Child resource should not be null"); assertSame(expectedChild, child, "Should return expected child resource"); } } @Nested @DisplayName("File Attribute Tests") class FileAttributeTests { @Test @DisplayName("file type checks should work correctly") void testFileTypeChecks() throws CIFSException { // Given
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0)