- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for addChild (0.04 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java
tm1.addProvide("vendor", "sun"); Xpp3Dom configuration1 = new Xpp3Dom("configuration"); Xpp3Dom jdkHome1 = new Xpp3Dom("jdkHome"); jdkHome1.setValue("${env.JAVA_HOME}"); configuration1.addChild(jdkHome1); tm1.setConfiguration(configuration1); ToolchainModel tm2 = new ToolchainModel(); tm1.setType("jdk"); tm1.addProvide("version", "1.4");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 4.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
if (tree == null) { tree = node; } if (parent != null) { parent.setNChildren(1); parent.addChild(0, node); } parent = node; } return tree; } public void setClasspath(List<ArtifactMetadata> classpath) { this.classpath = classpath; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java
this(new ArtifactMetadata(af), parent, resolved, scope); } // ------------------------------------------------------------------------ public void addChild(int index, MetadataTreeNode kid) { if (kid == null) { return; } if (children == null) { children = new MetadataTreeNode[nChildren]; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
cmd/data-usage-cache.go
if cycles <= 1 { return cycles == 1 } return uint32(xxhash.Sum64String(string(h))>>32)%(cycles) == cycle%cycles } // addChild will add a child based on its hash. // If it already exists it will not be added again. func (e *dataUsageEntry) addChild(hash dataUsageHash) { if _, ok := e.Children[hash.Key()]; ok { return } if e.Children == nil { e.Children = make(dataUsageHashMap, 1) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.7K bytes - Viewed (0) -
cmd/data-scanner.go
dst = &dataUsageEntry{Compacted: false} } if err := f.scanFolder(ctx, folder, dst); err != nil { return } if !into.Compacted { h := dataUsageHash(folder.name) into.addChild(h) // We scanned a folder, optionally send update. f.updateCache.deleteRecursive(h) f.updateCache.copyWithChildren(&f.newCache, h, folder.parent) f.sendUpdate() } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 45.5K bytes - Viewed (0)