- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 145 for CHILD (0.05 sec)
-
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-parent.xml
<version>11-SNAPSHOT</version> <name>Model urls inheritance test parent</name> <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description> <modules> <module>../child-artifact-id</module><!-- use child artifact id, even if different from directory --> </modules> <!-- 5 urls in the pom will be inherited with path added -->
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
// directory with a cycle, // /root // /child // /[grandchild -> root] Path root = createTempDirectory("ClassPathTest"); try { createFile(root.resolve("some.txt")); Path child = createDirectory(root.resolve("child")); createSymbolicLink(child.resolve("grandchild"), root); assertEquals(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 27.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml
<artifactId>parent</artifactId> <version>11-SNAPSHOT</version> <name>Model urls inheritance test parent</name> <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description> <modules> <module>../inheritance</module><!-- current directory == inheritance --> </modules> <!-- 5 urls in the pom will be inherited with path added -->
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java
try { assertThat(temp.exists()).isTrue(); assertThat(temp.isDirectory()).isTrue(); assertThat(temp.listFiles()).isEmpty(); File child = new File(temp, "child"); assertThat(child.createNewFile()).isTrue(); assertThat(child.delete()).isTrue(); if (!isAndroid() && !isWindows()) { PosixFileAttributes attributes =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 06 17:11:11 UTC 2023 - 4.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
for (AnnotationExpr child : node.getAnnotations()) { if (child instanceof SingleMemberAnnotationExpr && child.getNameAsString().endsWith("ReplacedBy")) { currentElement.setReplacement(((SingleMemberAnnotationExpr) child).getMemberValue().asLiteralStringValueExpr().getValue()); } currentElement.addAnnotationTypeName(child.getNameAsString()); } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt
accumulatorBitCount -= 8 val childIndex = (code ushr accumulatorBitCount) and 0xff val children = node.children!! var child = children[childIndex] if (child == null) { child = Node() children[childIndex] = child } node = child } val shift = 8 - accumulatorBitCount val start = (code shl shift) and 0xff val end = 1 shl shift
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 8.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/inheritance/ModelInheritanceAssembler.java
/** */ @Deprecated public interface ModelInheritanceAssembler { String ROLE = ModelInheritanceAssembler.class.getName(); void assembleModelInheritance(Model child, Model parent, String childPathAdjustment); void assembleModelInheritance(Model child, Model parent); void assembleBuildInheritance(Build childBuild, Build parentBuild, boolean handleAsInheritance); void copyModel(Model dest, Model source);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K 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(); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0)