Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for childrenOf (0.2 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    		children = append(children, tok(n.Type.Func, len("func")))
    		if n.Recv != nil {
    			children = append(children, n.Recv)
    		}
    		children = append(children, n.Name)
    		if tparams := n.Type.TypeParams; tparams != nil {
    			children = append(children, tparams)
    		}
    		if n.Type.Params != nil {
    			children = append(children, n.Type.Params)
    		}
    		if n.Type.Results != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      // at most two children for the prefix to detect if a directory is empty.
      auto gcs_file = static_cast<GCSFile*>(filesystem->plugin_filesystem);
      auto childrens = GetChildrenBounded(gcs_file, path, 2, true, true, status);
      if (TF_GetCode(status) != TF_OK) return;
      if (childrens.size() > 1 || (childrens.size() == 1 && !childrens[0].empty()))
        return TF_SetStatus(status, TF_FAILED_PRECONDITION,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            PendingOperation pending = pendings.remove(finish.id);
                            assert pending != null;
    
                            List<BuildOperationRecord> children = childrens.remove(finish.id);
                            assert children != null;
    
                            SerializedOperationStart start = pending.start;
    
                            Map<String, ?> detailsMap = uncheckedCast(start.details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight[2].children[0].isLeaf == false
            barInsight[2].children[0].alreadyRendered == false
            barInsight[2].children[0].children.size() == 1
            barInsight[2].children[0].children[0].name == 'compile'
            barInsight[2].children[0].children[0].resolvable == 'RESOLVED'
            barInsight[2].children[0].children[0].hasConflict == false
            barInsight[2].children[0].children[0].isLeaf == true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            assert rootProject.children.size() == 3 // All projects are created when storing
            with(rootProject.children.first() as Map<String, Object>) {
                assert name == 'a'
                assert path == ':a'
                assert projectDir == file('a').absolutePath
                assert buildFile == file('a/build.gradle').absolutePath
                with(children.first()) {
                    assert name == 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                    path == file("a/src/main/java").absolutePath
                    children.size() == 4
                    with(children[0]) {
                        path == "a"
                        children.size() == 2
                        with(children[0]) {
                            path == "a"
                            children.size() == 1
                            with(children[0]) {
                                path == "A.java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *          siblings of the dominant children.</li>
         *     <li> otherwise, use the default value for mergeChildren, which is true...this is the same as specifying
         *         'combine.children' == 'merge' as an attribute on the dominant root node.</li>
         *     </ol></li>
         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            rootProject.parent == null
    
            rootProject.children.size() == 2
            def children = rootProject.children.sort { it.name }
    
            EclipseProject child1 = children[0]
            child1.name == 'child1'
            child1.parent == rootProject
            child1.children.size() == 1
    
            EclipseProject child1Child1 = child1.children[0]
            child1Child1.name == 'grandChild1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            verifyTaskDetails(RegisterTaskBuildOperationType, withPath(':', ':foo')).children.empty
            def realize = verifyTaskDetails(RealizeTaskBuildOperationType, withPath(':', ':foo'))
            realize.children.size() == 1
            def configure = realize.children[0]
            configure.children.size() == 1
            buildOperations.isType(configure.children[0], RealizeTaskBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            elementOrFailure {
                val children = tree.children(node)
    
                var identifier: Syntactic<String>? = null
                var expression: CheckedResult<ElementResult<Expr>>? = null
                children.forEach {
                    when (val tokenType = it.tokenType) {
                        MODIFIER_LIST -> {
                            val modifiers = tree.children(it)
                            modifiers.forEach { modifier ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top