Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for children (0.27 sec)

  1. src/test/java/jcifs/tests/EnumTest.java

                        cf.close();
                    }
    
                    int n = 0;
                    try ( CloseableIterator<SmbResource> children = f.children("*.txt") ) {
                        while ( children.hasNext() ) {
                            try ( SmbResource r = children.next() ) {
                                assertTrue(r.exists());
                                n++;
                            }
                        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    .collect(Collectors.toList());
            return new XmlNodeImpl("configuration", null, null, children, null);
        }
    
        public static org.codehaus.plexus.util.xml.Xpp3Dom convert(MojoDescriptor mojoDescriptor) {
            PlexusConfiguration c = mojoDescriptor.getMojoConfiguration();
    
            List<XmlNode> children = new ArrayList<>();
            PlexusConfiguration[] ces = c.getChildren();
            if (ces != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    if (child != null) {
                        children.add(child);
                    }
                }
    
                message = "The build could not read " + children.size() + " project" + (children.size() == 1 ? "" : "s");
            } else {
                message = getMessage(message, exception);
            }
    
            return new ExceptionSummary(exception, message, reference, children);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                            try {
                                ResolutionGroup rGroup;
    
                                Object childKey;
                                do {
                                    childKey = child.getKey();
    
                                    if (managedVersions.containsKey(childKey)) {
                                        // If this child node is a managed dependency, ensure
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/xml/DomUtil.java

        /**
         * {@link NodeList}の文字列表現を追加します。
         *
         * @param children
         *            子要素。{@literal null}であってはいけません
         * @param buf
         *            文字列バッファ。{@literal null}であってはいけません
         */
        public static void appendChildren(final NodeList children, final StringBuilder buf) {
            assertArgumentNotNull("children", children);
            assertArgumentNotNull("buf", buf);
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResource.java

         */
        @Override
        void close ();
    
    
        /**
         * Fetch all children
         * 
         * @return an iterator over the child resources
         * @throws CIFSException
         */
        CloseableIterator<SmbResource> children () throws CIFSException;
    
    
        /**
         * Fetch children matching pattern, server-side filtering
         * 
         * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                                parameterConfiguration.getInputLocation());
    
                        children.add(parameterConfiguration);
                    }
                }
            }
            XmlNode finalConfiguration = new XmlNodeImpl("configuration", null, null, children, null);
    
            mojoExecution.setConfiguration(finalConfiguration);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

            int index = i++;
            future.addListener(
                () -> {
                  try {
                    if (future.isCancelled()) {
                      // Clear futures prior to cancelling children. This sets our own state but lets
                      // the input futures keep running, as some of them may be used elsewhere.
                      futures = null;
                      cancel(false);
                    } else {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                    XmlNode dom = server.getDelegate().getConfiguration();
                    List<XmlNode> children = dom.getChildren().stream()
                            .filter(c -> !"wagonProvider".equals(c.getName()))
                            .collect(Collectors.toList());
                    dom = new XmlNodeImpl(dom.getName(), null, null, children, null);
                    PlexusConfiguration config = XmlPlexusConfiguration.toPlexusConfiguration(dom);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                            .makeBehavior(REACTOR_MAKE_UPSTREAM)
                            .expectResult(PARENT_MODULE, MODULE_C, MODULE_A, MODULE_C_2),
                    scenario("Excluding a project also excludes its children")
                            .inactiveRequiredProjects(MODULE_C)
                            .expectResult(PARENT_MODULE, MODULE_A, MODULE_B, INDEPENDENT_MODULE),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
Back to top