Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,194 for Child (0.08 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy

                if (prettyPrint && !inlineContent) {
                    trimmedContent = element.childNodes.inject([]) { list, child ->
                        if (!(child instanceof Text) || child.textContent.trim().length() != 0) {
                            list << child
                        }
                        return list
                    }
                }
    
                if (trimmedContent.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/properties-inheritance/sub/pom.xml

        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
      <packaging>jar</packaging>
    
      <properties>
        <childProperty>child-property</childProperty>
        <overriddenProperty>child-override</overriddenProperty>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

        private val topLevelDeclarations: Sequence<KtDeclaration>
            get() {
                return sequence {
                    for (child in kotlinFile.declarations) {
                        if (child is KtScript) {
                            yieldAll(child.declarations)
                        } else {
                            yield(child)
                        }
                    }
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

                def child = new DummyElement(name)
                child.parent = this
                configure(child, config)
                elements += child
            }
    
            def idNameElement(String name, Closure config = {}) {
                def child = new DummyElement(name, name + "Id")
                child.parent = this
                configure(child, config)
                elements += child
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. src/os/signal/signal_cgo_test.go

    	//
    	// In principle, what we are doing is:
    	// 1. Creating a new PTY parent/child FD pair.
    	// 2. Create a child that is in the foreground process group of the PTY, and read() from that process.
    	// 3. Stop the child with ^Z.
    	// 4. Take over as foreground process group of the PTY from the parent.
    	// 5. Make the child foreground process group again.
    	// 6. Continue the child.
    	//
    	// On Darwin, step 4 results in the read() returning EINTR once the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        files = compile.getFiles { true }
    
                        assert files.collect { it.name } == ['hiphop-1.0.jar', 'child.jar', 'rock-1.0.jar']
    
                        def artifacts = compile.artifacts
    
                        assert artifacts.size() == 3
                        assert artifacts.collect { it.file.name } == ['hiphop-1.0.jar', 'child.jar', 'rock-1.0.jar']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml

      <!--
      While <mailingLists> are inherited, they are not aggregated, only the child elements are used.
      -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3843</groupId>
        <artifactId>parent-1</artifactId>
        <version>0.1</version>
      </parent>
    
      <groupId>org.apache.maven.its.mng3843.child</groupId>
      <artifactId>child-2</artifactId>
      <version>0.2</version>
      <packaging>jar</packaging>
    
      <mailingLists>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top