Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,194 for Child (0.04 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    }
                }
                ${buildFinishedCall('root-build-finished')}
            """
            createDirs("child/a", "child/b")
            file("child/settings.gradle") << """
                include 'a', 'b'
            """
            file("child/build.gradle") << """
                ${server.callFromBuild('child-build-script')}
                task hello {
                    dependsOn {
                        // call during task graph calculation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

                children.forEach((entry, child) -> {
                    if (entry.kind != VARARG) {
                        generateNormalCallChecksAndVisitSubtree(entry, child, paramIndex);
                    }
                });
                if (hasParamMatchers) {
                    result.endControlFlow();
                }
                children.forEach((entry, child) -> {
                    if (entry.kind == VARARG) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/parent-inheritance/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Aug 05 21:42:06 UTC 2009
    - 279 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            and:
            // start a child for 2 while it's offscreen, and complete that child
            renderer.onOutput(start(id: 3, parentId: 2, status: ":two:one"))
            renderer.onOutput(updateNow())
            renderer.onOutput(complete(3))
            renderer.onOutput(updateNow())
            // start a second child for 2 while it's offscreen, and complete that child too
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/WatchedHierarchiesTest.groovy

        }
    
        def "watches only outermost hierarchy"() {
            def watchable = Mock(WatchableHierarchies)
            def parent = new File("parent").absoluteFile
            def child = new File(parent, "child").absoluteFile
            def grandchild = new File(child, "grandchild").absoluteFile
    
            when:
            def watched = resolveWatchedFiles(watchable, buildHierarchy([
                regularFile(new File(grandchild, "missing.txt").absolutePath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreatorTest.groovy

        private EclipseClasspath eclipseClasspath
        private EclipseDependenciesCreator dependenciesProvider
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", temporaryFolder.testDirectory.file("child"))
            eclipseClasspath = TestUtil.newInstance(EclipseClasspath, project)
            dependenciesProvider = new EclipseDependenciesCreator(
                eclipseClasspath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

            expect:
            for (int i = 0; i < children.size(); i++) {
                def searchedChild = children[i]
                int foundIndex = SearchUtil.binarySearch(children) { child ->
                    VfsRelativePath.of(searchedChild).compareToFirstSegment(child, CASE_SENSITIVE)
                }
                assert foundIndex == i
            }
        }
    
        def "finds right entry in sorted list with only case differences in prefix"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcher.java

         *
         * @param arguments the arguments or null if the matcher should have child matchers instead
         */
        void setArguments(String arguments);
    
        /**
         * The child matchers of this matcher, e.g. when this is an OR-matcher.
         */
        Set<ResourceFilterMatcher> getChildren();
    
        /**
         * Adds a child/nested matcher to this matcher.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            }
    
            Operation child(Spec<String> displayNameSpec) {
                def child = children.find { displayNameSpec.isSatisfiedBy(it.descriptor.displayName) }
                if (child == null) {
                    throw new AssertionFailedError("No operation matching display name found in children of '$descriptor.displayName':\n${describeList(children)}")
                }
                return child
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/parent-inheritance/sub/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-2</artifactId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-1</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 206 bytes
    - Viewed (0)
Back to top