- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,326 for parrot (0.18 sec)
-
.teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt
) @Test fun `test stage tags`() { assertEquals( "-DbuildScan.PartOf=QuickFeedbackLinuxOnly,QuickFeedback,PullRequestFeedback,ReadyforNightly,ReadyforRelease", model.stages[0].getBuildScanCustomValueParam() ) assertEquals( "-DbuildScan.PartOf=QuickFeedback,PullRequestFeedback,ReadyforNightly,ReadyforRelease", model.stages[1].getBuildScanCustomValueParam()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml
<project> <parent> <artifactId>p0</artifactId> <groupId>maven-t09</groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>maven-t09</groupId> <artifactId>p2</artifactId> <packaging>pom</packaging> <name>p2</name> <version>1.0</version> <scm> <url>scm-url</url> </scm> <dependencies> <dependency> <groupId>maven-test</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 877 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t10/p0/p1/pom.xml
<project> <parent> <artifactId>p0</artifactId> <groupId>maven-t10</groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>maven-t10</groupId> <artifactId>p1</artifactId> <packaging>pom</packaging> <name>p1</name> <version>1.0</version> <scm> <url>scm-url</url> </scm> <dependencies> <dependency> <groupId>maven-test</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 877 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>inheritance</groupId> <artifactId>parent</artifactId> <version>11-SNAPSHOT</version> </parent> <groupId>inheritance</groupId> <artifactId>child-artifact-id</artifactId> <version>11-SNAPSHOT</version> <name>Model inheritance test parent: module directory != artifactId</name> <description>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ParentTest.java
/** * Tests {@code Parent}. * */ class ParentTest { @Test void testHashCodeNullSafe() { new Parent().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Parent().equals(null)); new Parent().equals(new Parent()); } @Test void testEqualsIdentity() { Parent thing = new Parent();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
guava/src/com/google/common/io/Files.java
} } /** * Creates any necessary but nonexistent parent directories of the specified file. Note that if * this operation fails it may have succeeded in creating some (but not all) of the necessary * parent directories. * * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent * directories of the specified file could not be created. * @since 4.0 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:03:12 UTC 2024 - 33.1K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/BuildModelSourceTransformerTest.java
.parent(org.apache.maven.api.model.Parent.newBuilder() .groupId("GROUPID") .artifactId("ARTIFACTID") .build()) .build()); Model expected = new Model(org.apache.maven.api.model.Model.newBuilder() .parent(org.apache.maven.api.model.Parent.newBuilder() .groupId("GROUPID")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java
* * @return The type of the class realm, never {@code null}. */ RealmType getType(); /** * Gets the parent class realm (if any). * * @return The parent class realm or {@code null} if using the default parent. */ ClassLoader getParent(); /** * @deprecated Use {@link #getParentImports()} instead. * @return imports */ @Deprecated
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/path/DefaultUrlNormalizerTest.java
assertEquals("http://server.org/child", normalize("http://server.org/parent/../child")); assertEquals("http://server.org/child", normalize("http://server.org/grand/parent/../../child")); assertEquals("http://server.org//child", normalize("http://server.org/parent/..//child")); assertEquals("http://server.org/child", normalize("http://server.org/parent//../child")); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java
parent = null; } public ResolutionNode(Artifact artifact, List<ArtifactRepository> remoteRepositories, ResolutionNode parent) { this.artifact = artifact; this.remoteRepositories = remoteRepositories; depth = parent.depth + 1; parents = new ArrayList<>(); parents.addAll(parent.parents); parents.add(parent.getKey()); this.parent = parent;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0)