Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

            private final String prefix;
            private final List<Node> children;
    
            Node(String prefix) {
                this.prefix = prefix;
                this.children = ImmutableList.of();
            }
    
            public Node(String prefix, List<Node> children) {
                this.prefix = prefix;
                this.children = children;
            }
    
            Node plus(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

        }
    
        private static List<String> visitAll(
                Collection<Vertex> children, Map<Vertex, DfsState> stateMap, List<String> list) {
            for (Vertex v : children) {
                DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
                if (state == null) {
                    visitAll(v.children, stateMap, list);
                    stateMap.put(v, DfsState.VISITED);
                    list.add(v.label);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. cmd/data-usage-cache.go

    func (e *dataUsageEntry) addChild(hash dataUsageHash) {
    	if _, ok := e.Children[hash.Key()]; ok {
    		return
    	}
    	if e.Children == nil {
    		e.Children = make(dataUsageHashMap, 1)
    	}
    	e.Children[hash.Key()] = struct{}{}
    }
    
    // Create a clone of the entry.
    func (e dataUsageEntry) clone() dataUsageEntry {
    	// We operate on a copy from the receiver.
    	if e.Children != nil {
    		ch := make(dataUsageHashMap, len(e.Children))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            resolveArtifactB.children == [downloadBArtifact]
            resolveArtifactC.children == [downloadCArtifact]
            resolveArtifactD.children == [downloadDArtifact]
        }
    
        @Issue("gradle/gradle#1641")
        @TargetGradleVersion(">=3.5 <4.0")
        def "generates download events during maven publish"() {
            given:
            toolingApi.requireIsolatedUserHome()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TreeTraverserTest.java

        final List<Tree> children;
    
        public Tree(char value, Tree... children) {
          super(value);
          this.children = Arrays.asList(children);
        }
      }
    
      private static final TreeTraverser<Tree> ADAPTER =
          new TreeTraverser<Tree>() {
            @Override
            public Iterable<Tree> children(Tree node) {
              return node.children;
            }
          };
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. android/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.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                List<ProjectReportModel> children,
                List<SoftwareTypeImplementation<?>> softwareTypes,
                boolean isRootProject,
                String tasksTaskPath,
                String rootProjectProjectsTaskPath,
                List<Path> includedBuildIdentityPaths
            ) {
                this.project = project;
                this.children = children;
                this.softwareTypes = softwareTypes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

            resolveB.children == [downloadBMetadata]
            resolveD.children == [downloadDMavenMetadata, downloadDPom]
    
            resolveCompileFiles.parent == applyRootBuildScript
            resolveCompileFiles.children.size() == 3 // resolution happens in parallel, so the operations may appear in any order
            resolveCompileFiles.children.contains(resolveArtifactB)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            project.parent == null
            project.name == 'test project'
            project.description == null
            project.children.size() == 1
            project.children[0] instanceof IdeaModule
            project.children == project.modules
        }
    
        def "provides basic project information"() {
    
            buildFile.text = """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. 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)
Back to top