Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 553 for childrenOf (0.2 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            final ImmutableMap<Long, Index> children;
            final Region stdOut;
            final Region stdErr;
    
            private Index(Region stdOut, Region stdErr) {
                this.children = ImmutableMap.of();
                this.stdOut = stdOut;
                this.stdErr = stdErr;
            }
    
            private Index(ImmutableMap<Long, Index> children, Region stdOut, Region stdErr) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            when:
            def eclipseModel = modelBuilder.buildAll("org.gradle.tooling.model.eclipse.EclipseProject", project)
    
            then:
            DefaultEclipseProject eclipseChild2 = eclipseModel.children.find { it.name == 'child2' }
            eclipseChild2.projectDependencies.collect { it.path } == ['child1']
            // verify we inherit the transitive dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/traffic.go

    	optsSpecified := c.opts.Port.Name != "" || c.opts.Port.Protocol != "" || c.opts.Scheme != ""
    	if optsSpecified && len(c.children) > 0 {
    		t.Fatal("TrafficTestCase: must not specify both opts and children")
    	}
    	if !optsSpecified && len(c.children) == 0 {
    		t.Fatal("TrafficTestCase: must specify either opts or children")
    	}
    
    	if !c.RequiresL4 {
    		c.comboFilters = append(c.comboFilters, echotest.HasL7)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

                spec()
                children.add(childBuilder)
            }
    
            ProjectDescriptor build() {
                children.shuffle()
                def childDescriptors = children*.build() as Set<TestProjectDescriptor>
                def thisProject = new TestProjectDescriptor()
                thisProject.name = name
                thisProject.children = childDescriptors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            assert project.children*.path == children
            assert project.buildTreePath == buildTreePath ?: project.path
        }
    
        Map project(String path, Map rootProject, Map parent = null) {
            if (parent == null) {
                if (path.lastIndexOf(':') == 0) {
                    return rootProject.children.find { it.path == path }
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

            def ownPackageName = packageName(classNumber, subProjectNumber)
            def imports = ''
            def children = dependencyTree.getTransitiveChildClassIds(classNumber)
            (0..Math.max(propertyCount, children.size()) - 1).each {
                def propertyType
                if (it < children.size()) {
                    def childNumber = children.get(it)
                    propertyType = "Production${childNumber}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

            this.name = name;
            this.path = path;
            this.description = description;
            this.projectDirectory = projectDirectory;
            this.tasks = Collections.emptyList();
            this.children = Lists.newArrayList(children);
            this.classpath = Collections.emptyList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/model/ModelReportOutput.groovy

            assert actual.children().size() == expected.children().size()
            assert actual.name == expected.name
            ModelReportParser.NODE_ATTRIBUTES.each { String display, String property ->
                if (expected.attribute(property)) {
                    assert actual.attribute(property) == expected.attribute(property)
                }
            }
            expected.children().eachWithIndex { ReportNode node, int index ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 02 20:49:19 UTC 2015
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/graph/GraphRenderer.java

        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
            if (seenRootChildren) {
                prefix.append(lastChild ? "     " : "|    ");
            }
            seenRootChildren = true;
        }
    
        /**
         * Completes visiting the children of the node which most recently started visiting children.
         */
        public void completeChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

     * We know everything about this snapshot, including children and Merkle hash.
     *
     * The snapshot can be a snapshot of a regular file or of a whole directory tree.
     * The file at the location is not required to exist (see {@link MissingFileSnapshot}).
     */
    public interface FileSystemLocationSnapshot extends FileSystemSnapshot, FileSystemNode, MetadataSnapshot {
    
        /**
         * The comparator of direct children of a file system location.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top