Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 553 for childrenOf (0.16 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                    path == file("a/src/main/java").absolutePath
                    children.size() == 4
                    with(children[0]) {
                        path == "a"
                        children.size() == 2
                        with(children[0]) {
                            path == "a"
                            children.size() == 1
                            with(children[0]) {
                                path == "A.java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNode.java

    public abstract class AbstractIncompleteFileSystemNode implements FileSystemNode {
        protected final ChildMap<FileSystemNode> children;
    
        @SuppressWarnings("unchecked")
        public AbstractIncompleteFileSystemNode(ChildMap<? extends FileSystemNode> children) {
            this.children = (ChildMap<FileSystemNode>) children;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiGradleProjectCrossVersionSpec.groovy

            project.children.size() == 1
            GradleProject a = project.children[0]
            a.name == 'a'
            a.path == ':a'
            a.description == 'A rocks!'
    
            a.children.size() == 2
            a.children.find { it.name == 'b' && it.path == ':a:b' }
            a.children.find { it.name == 'c' && it.path == ':a:c' }
            
            a.children.find { it.name == 'c'}.children[0].name == 'd'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/DefaultResourceFilterMatcher.java

        }
    
        @Override
        public Set<ResourceFilterMatcher> getChildren() {
            return children;
        }
    
        public void setChildren(Set<ResourceFilterMatcher> children) {
            if (children == null) {
                throw new InvalidUserDataException("children must not be null");
            }
            this.children = children;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

                    }
    
                    children.add(new ResolutionNode(a, remoteRepositories, this));
                }
                children = Collections.unmodifiableList(children);
            } else {
                children = Collections.emptyList();
            }
            trail = null;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *          siblings of the dominant children.</li>
         *     <li> otherwise, use the default value for mergeChildren, which is true...this is the same as specifying
         *         'combine.children' == 'merge' as an attribute on the dominant root node.</li>
         *     </ol></li>
         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java

        MetadataTreeNode parent; // papa
    
        /** default # of children. Used for tree creation optimization only */
        int nChildren = 8;
    
        MetadataTreeNode[] children; // of cause
    
        public int getNChildren() {
            return nChildren;
        }
    
        public void setNChildren(int children) {
            nChildren = children;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            rootProject.parent == null
    
            rootProject.children.size() == 2
            def children = rootProject.children.sort { it.name }
    
            EclipseProject child1 = children[0]
            child1.name == 'child1'
            child1.parent == rootProject
            child1.children.size() == 1
    
            EclipseProject child1Child1 = child1.children[0]
            child1Child1.name == 'grandChild1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/ValuedVfsHierarchy.java

            this.children = children;
            this.caseSensitivity = caseSensitivity;
        }
    
        public boolean isEmpty() {
            return children.isEmpty() && values.isEmpty();
        }
    
        /**
         * Returns an empty {@link ValuedVfsHierarchy} with the same case sensitivity.
         */
        @CheckReturnValue
        public ValuedVfsHierarchy<T> empty() {
            return emptyHierarchy(caseSensitivity);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:23:29 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					case "inside":
    					case "first" :
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						obj.children("ul").prepend(d);
    						tmp = obj;
    						break;
    					case "last":
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						obj.children("ul").append(d);
    						tmp = obj;
    						break;
    					default:
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top