Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 466 for childrenOf (0.19 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                List<ProjectReportModel> children,
                List<SoftwareTypeImplementation<?>> softwareTypes,
                boolean isRootProject,
                String tasksTaskPath,
                String rootProjectProjectsTaskPath,
                List<Path> includedBuildIdentityPaths
            ) {
                this.project = project;
                this.children = children;
                this.softwareTypes = softwareTypes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

            resolveB.children == [downloadBMetadata]
            resolveD.children == [downloadDMavenMetadata, downloadDPom]
    
            resolveCompileFiles.parent == applyRootBuildScript
            resolveCompileFiles.children.size() == 3 // resolution happens in parallel, so the operations may appear in any order
            resolveCompileFiles.children.contains(resolveArtifactB)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/visit.go

    //		... processing BEFORE visiting children ...
    //		if ... should visit children ... {
    //			ir.DoChildren(x, do)
    //		}
    //		... processing AFTER visiting children ...
    //		return false
    //	}
    //	do(root)
    //
    // The Visit function illustrates a further simplification of the pattern,
    // only processing before visiting children and never stopping:
    //
    //	func Visit(n ir.Node, visit func(ir.Node)) {
    //		if n == nil {
    //			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

    class UnknownFileSystemNodeTest extends AbstractIncompleteFileSystemNodeTest<UnknownFileSystemNode> {
    
        @Override
        protected UnknownFileSystemNode createInitialRootNode(ChildMap<FileSystemNode> children) {
            return new UnknownFileSystemNode(children)
        }
    
        @Override
        protected boolean isSameNodeType(FileSystemNode node) {
            return node instanceof UnknownFileSystemNode
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DefaultDependentBinariesResolvedResult.java

            this.identifier = identifier;
            this.projectScopeName = projectScopeName;
            this.buildable = buildable;
            this.testSuite = testSuite;
            this.children = children != null ? children : Collections.<DependentBinariesResolvedResult>emptyList();
        }
    
        @Override
        public LibraryBinaryIdentifier getId() {
            return identifier;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            project.parent == null
            project.name == 'test project'
            project.description == null
            project.children.size() == 1
            project.children[0] instanceof IdeaModule
            project.children == project.modules
        }
    
        def "provides basic project information"() {
    
            buildFile.text = """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/BuildStructureOperationProject.java

        private final String projectDir;
        private final String buildFile;
        private final Set<BuildStructureOperationProject> children;
    
        public BuildStructureOperationProject(String name, String path, String identityPath, String projectDir, String buildFile, Set<BuildStructureOperationProject> children) {
            this.name = name;
            this.path = path;
            this.identityPath = identityPath;
            this.projectDir = projectDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 03:43:27 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

    class PartialDirectoryNodeTest extends AbstractIncompleteFileSystemNodeTest<PartialDirectoryNode> {
    
        @Override
        protected PartialDirectoryNode createInitialRootNode(ChildMap<FileSystemNode> children) {
            return new PartialDirectoryNode(children)
        }
    
        @Override
        protected boolean isSameNodeType(FileSystemNode node) {
            node instanceof PartialDirectoryNode
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            then:
            def children = eclipseProject.children.sort { it.name }
            EclipseProject api = children[0]
            assert api.name == 'gradle-api'
            EclipseProject impl = children[1]
            assert impl.name == 'gradle-impl'
        }
    
        def "should deduplicate project names"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

            }
    
            if (!progress.isEmpty()) {
                map.put("progress", transform(progress, Progress::toSerializable));
            }
    
            if (!children.isEmpty()) {
                map.put("children", transform(children, BuildOperationRecord::toSerializable));
            }
    
            return map;
        }
    
        public boolean hasDetailsOfType(Class<?> clazz) throws ClassNotFoundException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
Back to top