Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 302 for childs (1.02 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            def child = nextNode()
            def edge1 = edge(parent1, false, null, child)
            def edge2 = edge(parent2, false, null, child)
            parent1.collectAncestorsStrictVersions([parent1Edge])
            parent2.collectAncestorsStrictVersions([parent2Edge])
            child.collectAncestorsStrictVersions([edge1, edge2])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "can use camel-case for all segments of qualified task name"() {
            createDirs("child", "child/child")
            settingsFile << "include 'child', 'child:child'"
    
            buildFile << """
    allprojects { task thing }
    """
            when:
            run "chi:chi:th"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

         */
        void describeTo(Appendable appendable);
    
        ModelRuleDescriptor append(ModelRuleDescriptor child);
    
        ModelRuleDescriptor append(String child);
    
        @FormatMethod
        ModelRuleDescriptor append(@FormatString String child, Object... args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

                            }
                            if (child == null) {
                                throw new IllegalStateException(String.format("Unexpected child dependency id %s. Seen ids: %s", childId, allDependencies.keySet()));
                            }
                            parent.addChild(child);
                            artifacts = artifactResults.getArtifactsWithId(decoder.readSmallInt());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

                        boolean matched = false;
                        for (Node child : children) {
                            if (!matched) {
                                int childCommonPrefix = child.sizeOfCommonPrefix(path, startNextSegment);
                                if (childCommonPrefix > 0) {
                                    merged.add(child.plusWithCommonPrefixLength(nextSegment, childCommonPrefix));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    .exampleblock>.content .qlist>ol>li:last-child> :last-child,
    .sidebarblock>.content> :last-child> :last-child,
    .sidebarblock>.content .olist>ol>li:last-child> :last-child,
    .sidebarblock>.content .ulist>ul>li:last-child> :last-child,
    .sidebarblock>.content .qlist>ol>li:last-child> :last-child {
    	margin-bottom: 0;
    }
    
    .literalblock pre,
    .listingblock pre:not(.highlight),
    .listingblock pre[class="highlight"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

        )
        def "inherited convention method is preferred over property with closure value"() {
            given:
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile """
    class ContactConvention {
        def contacts(String arg) { arg }
    }
    
    convention.plugins.contacts = new ContactConvention()
    
    subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomToolingModelCrossVersionSpec.groovy

                connection.model(CustomModel).get()
            }
    
            then:
            model.thing.is(model.thing)
            model.things[0].is(model.thing)
            model.thingsByName.child.is(model.thing)
            model.findThing("child").is(model.thing)
        }
    
        def "retains underlying object identity in model returned to client via build action"() {
            settingsFile << "include 'a', 'b'"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

        def "codenarc runs successfully for a child project with isolated projects"() {
            given:
            settingsFile << "include 'child:grand'"
            writeBuildFile(file("child/grand/build.gradle"))
            file("child/grand/src/main/groovy/Dummy.groovy") << "Dummy {}"
            withIsolatedProjects()
    
            expect:
            succeeds(":child:grand:codenarcMain")
            report(file("child/grand"), "main").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top