Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 553 for childrenOf (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/BuildStructureOperationProject.java

        private final String projectDir;
        private final String buildFile;
        private final Set<BuildStructureOperationProject> children;
    
        public BuildStructureOperationProject(String name, String path, String identityPath, String projectDir, String buildFile, Set<BuildStructureOperationProject> children) {
            this.name = name;
            this.path = path;
            this.identityPath = identityPath;
            this.projectDir = projectDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 03:43:27 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

    class PartialDirectoryNodeTest extends AbstractIncompleteFileSystemNodeTest<PartialDirectoryNode> {
    
        @Override
        protected PartialDirectoryNode createInitialRootNode(ChildMap<FileSystemNode> children) {
            return new PartialDirectoryNode(children)
        }
    
        @Override
        protected boolean isSameNodeType(FileSystemNode node) {
            node instanceof PartialDirectoryNode
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            then:
            def children = eclipseProject.children.sort { it.name }
            EclipseProject api = children[0]
            assert api.name == 'gradle-api'
            EclipseProject impl = children[1]
            assert impl.name == 'gradle-impl'
        }
    
        def "should deduplicate project names"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

            }
    
            if (!progress.isEmpty()) {
                map.put("progress", transform(progress, Progress::toSerializable));
            }
    
            if (!children.isEmpty()) {
                map.put("children", transform(children, BuildOperationRecord::toSerializable));
            }
    
            return map;
        }
    
        public boolean hasDetailsOfType(Class<?> clazz) throws ClassNotFoundException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildProgressCrossVersionSpec.groovy

            configureBuild.children.contains(configureRoot)
    
            def configureA = events.operation("Configure project :a")
            configureA.parent == configureRoot
            configureRoot.children == [configureA]
    
            def configureB = events.operation("Configure project :b")
            configureB.parent == configureA
            configureA.children == [configureB]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

     *                           "alreadyRendered" : true|false
     *                           "hasConflict" : true|false
     *                           "children" : [
     *                               same array as configurations.dependencies.children
     *                           ]
     *                       },
     *                       ...
     *                   ],
     *                   "moduleInsights : [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

            if (sortPolicy == SortPolicy.BY_NAME) {
                Collections.sort(children, new Comparator<PBXReference>() {
                    @Override
                    public int compare(PBXReference o1, PBXReference o2) {
                        return o1.getName().compareTo(o2.getName());
                    }
                });
            }
    
            s.addField("children", children);
        }
    
        /**
         * Method by which group contents will be sorted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TreeTraverser.java

        checkNotNull(nodeToChildrenFunction);
        return new TreeTraverser<T>() {
          @Override
          public Iterable<T> children(T root) {
            return nodeToChildrenFunction.apply(root);
          }
        };
      }
    
      /** Returns the children of the specified node. Must not contain null. */
      public abstract Iterable<T> children(T root);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java

            this.reference = (reference != null) ? reference : "";
            this.children = (children != null) ? Collections.unmodifiableList(children) : Collections.emptyList();
        }
    
        public Throwable getException() {
            return exception;
        }
    
        public String getMessage() {
            return message;
        }
    
        public String getReference() {
            return reference;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            then:
            resultRoot instanceof PartialDirectoryNode
            resultRoot.children == children
            removedNodes == [initialRoot.getSnapshot().get()]
            addedNodes == children.stream().map(ChildMap.Entry::getValue).toList()
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << onlyDirectChildren(NO_COMMON_PREFIX)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top