Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 170 for children (0.34 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            project: CachedProjectState,
            rootProjectName: String,
            children: Map<Path?, List<CachedProjectState>>
        ): BuildStructureOperationProject {
            val childProjects = children.getOrDefault(project.path, emptyList()).map { convertProject(converted, it, rootProjectName, children) }.toSet()
            return converted.computeIfAbsent(project.path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                                parameterConfiguration.getInputLocation());
    
                        children.add(parameterConfiguration);
                    }
                }
            }
            XmlNode finalConfiguration = new XmlNodeImpl("configuration", null, null, children, null);
    
            mojoExecution.setConfiguration(finalConfiguration);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. maven-settings/pom.xml

                    <template>transformer.vm</template>
                    <template>reader-stax.vm</template>
                    <template>writer-stax.vm</template>
                  </templates>
                  <params combine.children="append">
                    <param>locationTracking=true</param>
                    <param>generateLocationClasses=true</param>
                  </params>
                </configuration>
              </execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

         * Called when starting to visit a file collection. Can return true to continue with visiting or false to skip this collection and its contents.
         *
         * <p>When a file collection represents a container of file collections, the children of the file collection are visited in order. Visiting a child works in the
         * same way as visiting this collection, starting with a call to {@link #startVisit(FileCollectionInternal.Source, FileCollectionInternal)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                try {
                    final CIFSContext context = file.getContext();
                    final SID[] children = context.getSIDResolver().getGroupMemberSids(context, file.getServer(), sid.getDomainSid(),
                            sid.getRid(), jcifs.smb.SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
                            processAllowedSIDs(file, child, sidSet);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/phi.go

    	// properties of the dominator tree
    	idom  []*ssa.Block // dominator parents
    	tree  []domBlock   // dominator child+sibling
    	level []int32      // level in dominator tree (0 = root or unreachable, 1 = children of root, ...)
    
    	// scratch locations
    	priq   blockHeap    // priority queue of blocks, higher level (toward leaves) = higher priority
    	q      []*ssa.Block // inner loop queue
    	queued *sparseSet   // has been put in q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java

      }
    
      private static final TreeTraverser<BinaryNode> VIEWER =
          new TreeTraverser<BinaryNode>() {
            @Override
            public Iterable<BinaryNode> children(BinaryNode root) {
              return Optional.presentInstances(ImmutableList.of(root.left, root.right));
            }
          };
    
      enum Traversal {
        PRE_ORDER {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 26 19:18:53 UTC 2019
    - 4.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

                throws ProjectBuildingException;
    
        /**
         * Builds the projects for the specified POM files and optionally their children.
         *
         * @param pomFiles The POM files to build, must not be {@code null}.
         * @param recursive {@code true} to recursively build submodules referenced by the POM files, {@code false} to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

                        createRootFingerprint(currentSnapshot)
                    ))) {
                        // Only one of the types will be a directory, so we now need to report all children of the other one.
                        if (visitAllChildChanges(previousSnapshot, visitor, (relativePath, snapshot) -> FINGERPRINT_CHANGE_FACTORY.removed(
                            snapshot.getAbsolutePath(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

            if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) {
                try {
                    final SID[] children = sid.getGroupMemberSids(file.getServer(), (NtlmPasswordAuthentication) file.getPrincipal(),
                            SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
                            processAllowedSIDs(file, child, sidSet);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top