Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 553 for childrenOf (0.23 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    type incomparable [0]func()
    
    type node struct {
    	_ incomparable
    
    	// children is non-nil for internal nodes
    	children *[256]*node
    
    	// The following are only valid if children is nil:
    	codeLen uint8 // number of bits that led to the output of sym
    	sym     byte  // output symbol
    }
    
    func newInternalNode() *node {
    	return &node{children: new([256]*node)}
    }
    
    var (
    	buildRootOnce       sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.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. 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