Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 255 for parentLi (0.13 sec)

  1. maven-core/src/test/resources-project-builder/dependency-inheritance/maven-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-parent</artifactId>
      <version>11</version>
      <packaging>pom</packaging>
    
      <name>Apache Maven</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/validation/incomplete-parent.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <!-- all fields missing -->
      </parent>
    
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Nov 18 14:08:28 UTC 2009
    - 963 bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

                rootId = test.getId();
            } else {
                Object parentId = event.getParentId();
                if (parentId == null) {
                    //if we don't know the parent we will use the top suite
                    //this way we always have and id to attach logging events for
                    parentId = rootId;
                }
                parents.put(test.getId(), parentId);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

            when:
            File startingDir = parentDir.getParentFile()
    
            then:
            pathToDescendant(new File("${startingDir}/$parent"), new File("${startingDir}/$child")) == expected
    
            where:
            parent              | child                             | expected
            "parent/"           | "parent/dir1/file1.txt"           | 'dir1/file1.txt'
            "parent/parent.txt" | "parent/dir1/file1.txt"           | 'dir1/file1.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            console.flush()
    
            then:
            progressArea.display == []
        }
    
        def "parent progress operation without message is ignored when renderable child completes"() {
            when:
            renderer.onOutput(start(1))
            renderer.onOutput(start(id: 2, parentId: 1, status: ":foo"))
            renderer.onOutput(start(id: 3, parentId: null, status: ":bar"))
            renderer.onOutput(updateNow())
            console.flush()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultFileDownloadDescriptor.java

        private final URI uri;
    
        public DefaultFileDownloadDescriptor(OperationIdentifier id, String name, String displayName, OperationIdentifier parentId, URI uri) {
            super(id, name, displayName, parentId);
            this.uri = uri;
        }
    
        @Override
        public URI getUri() {
            return uri;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 30 22:30:58 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultClasspathBuilder.java

            }
        }
    
        private void buildJar(File jarFile, Action action) throws IOException {
            File parentDir = jarFile.getParentFile();
            File tmpFile = temporaryFileProvider.createTemporaryFile(jarFile.getName(), ".tmp");
            try {
                Files.createDirectories(parentDir.toPath());
                inPlaceBuilder.jar(tmpFile, action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ClassLoaderFixture.groovy

        }
    
        static ClassLoader actionClassLoader(ClassLoader parent, TestFile... cp) {
            def spec = new FilteringClassLoader.Spec()
            spec.allowPackage("org.gradle.tooling")
            def parentCl = new FilteringClassLoader(parent, spec)
            return new URLClassLoader(cp.collect { it.toURI().toURL() } as URL[], parentCl)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/nexus-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.sonatype.nexus</groupId>
      <artifactId>nexus-parent</artifactId>
      <version>8-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <properties>
        <plexus.version>1.0-beta-3.0.5-SNAPSHOT</plexus.version>
      </properties>
    
      <dependencyManagement>
        <dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 961 bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/urls-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Most classical case: child in direct subdirectory with directory name == child artifactId</description>
    
      <modules>
        <module>child-artifact-id</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top