Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 466 for childrenOf (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationTestUtils.groovy

            def suiteTestOps = operations.children(firstLevelTestOps[0], ExecuteTestBuildOperationType)
            assert suiteTestOps.size() == 1
            assert suiteTestOps*.details.testDescriptor.name == ["SimpleTest"]
            assert suiteTestOps*.details.testDescriptor.className == [null]
            assert suiteTestOps*.details.testDescriptor.composite == [true]
    
            def suiteTestTestOps = operations.children(suiteTestOps[0], ExecuteTestBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/graph/DependencyGraphRendererSpec.groovy

            def dep2 = new SimpleDependency("dep2")
            def dep21 = new SimpleDependency("dep2.1")
            def dep22 = new SimpleDependency("dep2.2")
    
            root.children.addAll(dep1, dep2)
            dep1.children.addAll(dep11)
            dep2.children.addAll(dep21, dep22)
    
            when:
            renderer.render([root])
            renderer.complete()
    
            then:
            textOutput.value.readLines() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 03 14:10:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def link2 = snapshot.children[0].children[0] as DirectorySnapshot
            link2.accessType == AccessType.VIA_SYMLINK
            link2.name == "linked"
    
            def link3 = link2.children[1].children[0] as DirectorySnapshot
            link3.accessType == AccessType.VIA_SYMLINK
            link3.name == "linked3"
    
            def link4 = link3.children[0].children[0] as RegularFileSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            AbstractIncompleteFileSystemNode newChild = getNodeWithIndexOfSelectedChild(resultRoot.children) as AbstractIncompleteFileSystemNode
            then:
            resultRoot.children == childrenWithSelectedChildReplacedBy(commonPrefix, newChild)
            newChild.children == sortedChildren(
                newGrandChildPath, newGrandChild,
                selectedChildPathFromCommonPrefix, selectedChild
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top