Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for child3 (0.22 sec)

  1. platforms/extensibility/unit-test-fixtures/src/test/groovy/org/gradle/testfixtures/ProjectBuilderTest.groovy

        }
    
        def "can create a child project"() {
    
            when:
            def root = ProjectBuilder.builder().build()
            def child = ProjectBuilder.builder().withParent(root).build()
    
            then:
            child.name == 'test'
            child.path == ':test'
            child.projectDir == root.file("test")
            child.buildFile == child.file("build.gradle")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/net/http/routing_tree.go

    	pattern *pattern
    	handler Handler
    
    	// An interior node maps parts of the incoming request to child nodes.
    	// special children keys:
    	//     "/"	trailing slash (resulting from {$})
    	//	   ""   single wildcard
    	children   mapping[string, *routingNode]
    	multiChild *routingNode // child with multi wildcard
    	emptyChild *routingNode // optimization: child with key ""
    }
    
    // addPattern adds a pattern and its associated Handler to the tree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactory.java

                for (DefaultImmutableAttributes child : nodeChildren) {
                    if (child.attribute.equals(key) && child.value.equals(value)) {
                        return child;
                    }
                }
                DefaultImmutableAttributes child = new DefaultImmutableAttributes((DefaultImmutableAttributes) node, key, value);
                nodeChildren.add(child);
                return child;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

        /**
         * Creates a child {@code ListenerManager}.
         * <p>
         * All events broadcast in the child will be received by the listeners registered in the parent.
         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
         * The child inherits the loggers of its parent, though these can be replaced.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

            if (separator == 0) {
                return decoder.readString();
            } else {
                String parent = readName(decoder);
                String child = readName(decoder);
                return parent + (char) (separator & 0xFF) + child;
            }
        }
    
        private void writeName(String name, Encoder encoder) throws IOException {
            Integer id = namesById.inverse().get(name);
            if (id == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top