Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 334 for Child (0.11 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            for (AnnotationExpr child : node.getAnnotations()) {
                if (child instanceof SingleMemberAnnotationExpr && child.getNameAsString().endsWith("ReplacedBy")) {
                    currentElement.setReplacement(((SingleMemberAnnotationExpr) child).getMemberValue().asLiteralStringValueExpr().getValue());
                }
                currentElement.addAnnotationTypeName(child.getNameAsString());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            'non-matching group'     | [group: 'other']  | []
            'child name of sibling'  | [module: 'e']     | []
            'child group of sibling' | [group: 'e']      | []
            'all child modules'      | [module: '*']     | ['d']
            'all child groups'       | [group: '*']      | ['d']
            'name child module'      | [module: 'd']     | ['d']
            'name child group'       | [group: 'd']      | ['d']
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/encoding/xml/read_test.go

    	Bs       []bool
    	BPtrs    []*bool
    	Bytes    []byte
    	BytesPtr *[]byte
    	S        string
    	SPtr     *string
    	Ss       []string
    	SPtrs    []*string
    	MyI      MyInt
    	Child    Child
    	Children []Child
    	ChildPtr *Child
    	ChildToEmbed
    }
    
    const (
    	emptyXML = `
    <Parent>
        <I></I>
        <IPtr></IPtr>
        <Is></Is>
        <IPtrs></IPtrs>
        <F></F>
        <FPtr></FPtr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            def services = new TreeServices(workers)
            def childBuild = build(services, new DefaultBuildIdentifier(Path.path(":child")))
            def build = build(services, DefaultBuildIdentifier.ROOT)
            def childNode = new TestNode("child build node")
            def node = new TestNode("main build node")
    
            when:
            def result = scheduleAndRun(services) { builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/base.css

    .appendix h1 {
        margin-bottom: 1.0em;
    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    
    .note p:first-child, .tip p:first-child {
        margin-top: 0;
    }
    
    .note > :last-child, .tip > :last-child, .examplelocation > :last-child {
        margin-bottom: 0;
    }
    
    .note, .tip, .exampleLocation {
        border-left: 1px solid #ddddd8;
        color: rgba(0,0,0,0.6);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

      }
    
      public void testLocationEquals() {
        ClassLoader child = getClass().getClassLoader();
        ClassLoader parent = child.getParent();
        new EqualsTester()
            .addEqualityGroup(
                new ClassPath.LocationInfo(new File("foo.jar"), child),
                new ClassPath.LocationInfo(new File("foo.jar"), child))
            .addEqualityGroup(new ClassPath.LocationInfo(new File("foo.jar"), parent))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                    }
                }
    
                // Then visit all child components' variants
                if (component instanceof ComponentWithVariants) {
                    ComponentWithVariants parent = (ComponentWithVariants) component;
                    for (SoftwareComponent child : parent.getVariants()) {
                        walkComponent(child, componentCoordinates, componentsSeen, coordinatesSeen, visitor);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
         *     <li> if mergeChildren == true and there is a corresponding dominant child (matched by element name),
         *          merge the two.</li>
         *     <li> otherwise, add the recessive child as a new child on the dominant root node.</li>
         *     </ol></li>
         *   </ol></li>
         * </ol>
         */
        @SuppressWarnings("checkstyle:MethodLength")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

            }
    
            void hasChild(String name, Closure<?> spec) {
                def child = actual.children.find { it.name == name }
                assert child != null: "Unable to find child named $name. Known children to ${actual.name} = ${actual.children.name}"
                checkedChildren << child
                verify(child, spec)
            }
    
            void noMoreChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

                    org.w3c.dom.Node child = children.item(i);
                    if (child.getNodeType() == org.w3c.dom.Node.TEXT_NODE && child.getNodeValue().trim().length() == 0) {
                        node.removeChild(child);
                        i--;
                    } else {
                        removeEmptyTextNodes(child);
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top