- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for getNChildren (0.07 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
directoryLeaseManager.updateDirectoryCache(directoryPath, files); // Step 6: Verify cache is complete and populated assertTrue(cacheEntry.isComplete()); assertEquals(2, cacheEntry.getChildren().size()); assertTrue(cacheEntry.hasChild("document.txt")); assertTrue(cacheEntry.hasChild("subfolder")); // Step 7: Verify cached directory listing
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
assertNotNull(cacheEntry); assertTrue(cacheEntry.isComplete()); assertEquals(2, cacheEntry.getChildren().size()); // Verify the cached files have correct names List<DirectoryCacheEntry.FileInfo> children = cacheEntry.getChildren(); assertTrue(children.stream().anyMatch(f -> "file1.txt".equals(f.getName())));
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
entry.updateChild("file1.txt", attrs); assertTrue(entry.hasChild("file1.txt")); assertEquals(1, entry.getChildren().size()); // Test removal entry.removeChild("file1.txt"); assertFalse(entry.hasChild("file1.txt")); assertEquals(0, entry.getChildren().size()); } @Test public void testDirectoryLeaseManager() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
throws PlexusConfigurationException { List<MojoDescriptor> mojos = new ArrayList<>(); PlexusConfiguration[] mojoConfigurations = c.getChild("mojos").getChildren("mojo"); for (PlexusConfiguration component : mojoConfigurations) { mojos.add(buildComponentDescriptor(component, pluginDescriptor)); } return mojos; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
Set<Artifact> artifacts = new LinkedHashSet<>(); if (result.getDependencyGraph() != null && !result.getDependencyGraph().getChildren().isEmpty()) { RepositoryUtils.toArtifacts( artifacts, result.getDependencyGraph().getChildren(), Collections.singletonList(project.getArtifact().getId()), collectionFilter); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 15.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java
if (fromProject != null) { MavenProject toProject = projectMap.get(toVertex.getLabel()); fromProject.addProjectReference(toProject); } if (force && toVertex.getChildren().contains(fromVertex)) { graph.removeEdge(toVertex, fromVertex); } try { graph.addEdge(fromVertex, toVertex); } catch (CycleDetectedException e) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 13K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java
PlexusConfiguration c = mojoDescriptor.getMojoConfiguration(); List<XmlNode> children = new ArrayList<>(); PlexusConfiguration[] ces = c.getChildren(); if (ces != null) { for (PlexusConfiguration ce : ces) { String value = ce.getValue(null); String defaultValue = ce.getAttribute("default-value", null);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 11.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
artifact.setDependencyTrail(nodeTrail); artifacts.add(artifact); } toArtifacts(artifacts, node.getChildren(), nodeTrail, filter); } } public static Artifact toArtifact(org.apache.maven.artifact.Artifact artifact) { if (artifact == null) { return null; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 04 18:33:16 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0)