Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for hasChildren (0.13 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeWriter.java

                indent();
                super.writeEmptyElement(localName);
                hasChildren = true;
                anew = false;
            }
    
            @Override
            public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException {
                indent();
                super.writeEmptyElement(namespaceURI, localName);
                hasChildren = true;
                anew = false;
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/mdo/writer-stax.vm

                depth++;
                hasChildren = false;
            }
    
            @Override
            public void writeEndElement() throws XMLStreamException {
                depth--;
                if (hasChildren) {
                    indent();
                }
                super.writeEndElement();
                hasChildren = true;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationTest.groovy

            when:
            progressOperation.addChild(mockOperation)
    
            then:
            progressOperation.hasChildren()
    
            when:
            progressOperation.removeChild(mockOperation)
    
            then:
            !progressOperation.hasChildren()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

    data class BuildToStore(
        val build: VintageGradleBuild,
        // Does this build have work scheduled?
        val hasWork: Boolean,
        // Does this build have a child build with work scheduled?
        val hasChildren: Boolean
    ) {
        fun hasChildren() = BuildToStore(build, hasWork, true)
    }
    
    
    /**
     * State cached for a build in the tree.
     */
    internal
    sealed class CachedBuildState(
        val identityPath: Path,
    )
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressOperation.java

            }
            return children.remove(operation);
        }
    
        public boolean hasChildren() {
            return children != null && !children.isEmpty();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java

            }
    
            return md.groupId + ":" + md.artifactId;
        }
    
        // ------------------------------------------------------------------------
        public boolean hasChildren() {
            return children != null;
        }
        // ------------------------------------------------------------------------
        public ArtifactMetadata getMd() {
            return md;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/WorkInProgressRenderer.java

                unusedProgressLabels.push(progressArea.getBuildProgressLabels().get(i));
            }
        }
    
        private void attach(ProgressOperation operation) {
            if (operation.hasChildren() || !isRenderable(operation)) {
                return;
            }
    
            // Don't show the parent operation while a child is visible
            // Instead, reuse the parent label, if any, for the child
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                if (build.hasScheduledWork && state is StandAloneNestedBuild) {
                    // Also require the owner of a buildSrc build
                    builds[state.owner] = builds.getValue(state.owner).hasChildren()
                }
            }
            writeCollection(builds.values) { build ->
                writeBuildState(
                    build,
                    StoredBuildTreeState(requiredBuildServicesPerBuild),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/dwarf.go

    				continue Outer
    			}
    		}
    
    		putattr(ctxt, s, abbrev, int(f.form), 0, 0, nil)
    	}
    }
    
    // HasChildren reports whether 'die' uses an abbrev that supports children.
    func HasChildren(die *DWDie) bool {
    	abbrevs := Abbrevs()
    	return abbrevs[die.Abbrev].children != 0
    }
    
    // PutIntConst writes a DIE for an integer constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    	if s == 0 {
    		s = syms[len(syms)-1]
    	} else {
    		syms = append(syms, s)
    	}
    	sDwsym := dwSym(s)
    	dwarf.Uleb128put(d, sDwsym, int64(die.Abbrev))
    	dwarf.PutAttrs(d, sDwsym, die.Abbrev, die.Attr)
    	if dwarf.HasChildren(die) {
    		for die := die.Child; die != nil; die = die.Link {
    			syms = d.putdie(syms, die)
    		}
    		dsu := d.ldr.MakeSymbolUpdater(syms[len(syms)-1])
    		dsu.AddUint8(0)
    	}
    	return syms
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top