Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 553 for childrenOf (0.17 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DefaultDependentBinariesResolver.java

            }
            List<DependentBinariesResolvedResult> children = new ArrayList<>();
            for (Collection<DependentBinariesResolvedResult> childResults : index.asMap().values()) {
                children.add(mergeResults(childResults));
            }
            return new DefaultDependentBinariesResolvedResult(first.getId(), first.getProjectScopedName(), !hasNotBuildables, hasTestSuites, children);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            project.targets.size() == 2
            assertTargetIsTool(project.targets[0], 'App')
            project.targets[1].assertIsIndexerFor(project.targets[0])
    
            project.products.children.size() == 1
            project.products.children[0].path == exe("build/install/main/debug/lib/App").absolutePath
    
            rootXcodeProject.schemeFiles.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

            }
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseProject projectA = project.children[0]
            EclipseProject projectB = project.children[1]
            EclipseProject projectC = project.children[2]
            EclipseProject projectD = project.children[3]
    
            then:
            projectA.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar' ] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/DefaultProjectDescriptor.java

            return parent;
        }
    
        @Override
        public Set<ProjectDescriptor> getChildren() {
            return Cast.uncheckedCast(children);
        }
    
        public Set<? extends DefaultProjectDescriptor> children() {
            return children;
        }
    
        @Override
        public String getPath() {
            return path.toString();
        }
    
        void setPath(Path path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    		} else if summary.Parent != nil {
    			t.Errorf("unexpected parent %d for task %d", summary.Parent.ID, id)
    		}
    
    		// Check children.
    		gotChildren := make(map[trace.TaskID]struct{})
    		for _, child := range summary.Children {
    			gotChildren[child.ID] = struct{}{}
    		}
    		for _, wantChild := range want.children {
    			if _, ok := gotChildren[wantChild]; ok {
    				delete(gotChildren, wantChild)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r210/ToolingApiEclipseModelCrossVersionSpec.groovy

            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject subprojectA = rootProject.children.find { it.name == 'subproject-a' }
            EclipseProject subprojectB = rootProject.children.find { it.name == 'subproject-b' }
            EclipseProject subprojectC = rootProject.children.find { it.name == 'subproject-c' }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            project.targets.size() == 2
            assertTargetIsTool(project.targets[0], 'App', 'app')
            project.targets[1].assertIsIndexerFor(project.targets[0])
    
            project.products.children.size() == 1
            project.products.children[0].path == exe("build/install/main/debug/lib/app").absolutePath
        }
    
        @ToBeFixedForConfigurationCache
        def "can create xcode project for C++ application with multiple architecture"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

            0 * _
    
            when:
            invalidate(rootDirSnapshot.children[0])
            invalidate(rootDirSnapshot.children[1])
            then:
            0 * _
    
            when:
            invalidate(rootDirSnapshot.children[2])
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [rootDir]) })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsGraphRenderer.java

            renderChildren(getChildren(root));
        }
    
        private void renderChildren(Set<? extends RenderableDependency> children) {
            renderer.startChildren();
            int idx = 0;
            for (RenderableDependency child : children) {
                boolean last = idx++ == children.size() - 1;
                doRender(child, last);
            }
            renderer.completeChildren();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java

        }
    
        private static List<String> visitCycle(
                Map<String, Set<String>> graph,
                Collection<String> children,
                Map<String, DfsState> stateMap,
                LinkedList<String> cycle) {
            if (children != null) {
                for (String v : children) {
                    DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
                    if (state == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top