Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 553 for childrenOf (0.1 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilder.java

                .setProjectDirectory(project.getProjectDir())
                .setBuildTreePath(projectIdentityPath)
                .setChildren(children);
    
            gradleProject.getBuildScript().setSourceFile(project.getBuildFile());
    
            for (DefaultGradleProject child : children) {
                child.setParent(gradleProject);
            }
    
            if (realizeTasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/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: Thu May 16 10:10:39 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                val actions = readList().uncheckedCast<List<Action<FileCopyDetails>>>()
                val children = readList().uncheckedCast<List<CopySpecInternal>>()
                val copySpec = DefaultCopySpec(fileCollectionFactory, objectFactory, instantiator, patternSetFactory, destPath, sourceFiles, patterns, actions, children)
                copySpec.duplicatesStrategy = duplicatesStrategy
                copySpec.includeEmptyDirs = includeEmptyDirs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractionContext.java

        private final String description;
        private final Action<? super ModelSchema<T>> validator;
        private ModelSchema<T> result;
        private final List<DefaultModelSchemaExtractionContext<?>> children = new ArrayList<>();
        private final FormattingValidationProblemCollector problems;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/ExternalResourceLister.java

    /**
     * You should use {@link ExternalResource} instead of this type.
     */
    public interface ExternalResourceLister {
    
        /**
         * Lists the direct children of the parent resource
         *
         * @param parent the resource to list from
         * @return A list of the direct children of the <code>parent</code>, null when the resource does not exist.
         */
        @Nullable
        List<String> list(ExternalResourceName parent) throws ResourceException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/adsc/delta.go

    //
    // This change reflects the removal of CDS/A and its associated child link to EDS/C.
    type resourceNode struct {
    	// Parents of the resource. If nil, this is explicitly watched
    	Parents keySet
    	// Children of the resource
    	Children keySet
    }
    
    type HandlerContext interface {
    	RegisterDependency(typeURL string, resourceName ...string)
    	Reject(reason error)
    }
    
    var _ HandlerContext = &handlerContext{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            afterEvaluateCallbackBuildOps.children.size() == 1
            afterEvaluateCallbackBuildOps.children[0].hasDetailsOfType(ExecuteDomainObjectCollectionCallbackBuildOperationType.Details.class)
            afterEvaluateCallbackBuildOps.children[0].details.applicationId == callbackPluginApplication.details.applicationId
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/initialization/ProjectDescriptor.java

         * @return The parent, or null if this is the root project.
         */
        @Nullable
        ProjectDescriptor getParent();
    
        /**
         * Returns the children of this project, if any.
         *
         * @return The children. Returns an empty set if this project does not have any children.
         */
        Set<ProjectDescriptor> getChildren();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/net/http/mapping_test.go

    		"install.html",
    		"logo-153x55.png",
    		"Makefile",
    		"root.html",
    		"share.png",
    		"sieve.gif",
    		"tos.html",
    		"articles",
    	}
    	if len(children) != 32 {
    		panic("bad len")
    	}
    	for _, n := range []int{2, 4, 8, 16, 32} {
    		list := children[:n]
    		b.Run(fmt.Sprintf("n=%d", n), func(b *testing.B) {
    
    			b.Run("rep=linear", func(b *testing.B) {
    				var entries []entry[string, any]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/GradleBuildModelCrossVersionSpec.groovy

            assert model.rootProject.name == 'test'
            assert model.rootProject.path == ':'
            assert model.rootProject.parent == null
            assert model.rootProject.children.size() == 2
            assert model.rootProject.children.every { it.parent == model.rootProject }
            assert model.projects*.name == ['test', 'a', 'b', 'c']
            assert model.projects*.path == [':', ':a', ':b', ':b:c']
            model
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top