Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 153 for children (1.22 sec)

  1. 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 {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Alice was not going to do THAT in a hurry.  `No, I'll look
    first,' she said, `and see whether it's marked "poison" or not';
    for she had read several nice little histories about children who
    had got burnt, and eaten up by wild beasts and other unpleasant
    things, all because they WOULD not remember the simple rules
    their friends had taught them:  such as, that a red-hot poker
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. 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),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        @Override
        public CloseableIterator<SmbResource> children () throws CIFSException {
            return SmbEnumerationUtil.doEnum(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
        }
    
    
        @Override
        public CloseableIterator<SmbResource> children ( String wildcard ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  5. src/cmd/fix/fix.go

    // in a bottom-up traversal.
    func walk(x any, visit func(any)) {
    	walkBeforeAfter(x, nop, visit)
    }
    
    func nop(any) {}
    
    // walkBeforeAfter is like walk but calls before(x) before traversing
    // x's children and after(x) afterward.
    func walkBeforeAfter(x any, before, after func(any)) {
    	before(x)
    
    	switch n := x.(type) {
    	default:
    		panic(fmt.Errorf("unexpected type %T in walkBeforeAfter", x))
    
    	case nil:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  6. pom.xml

              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                  <systemPropertyVariables combine.children="append">
                    <property>
                      <!-- Pass this through to the tests (if set!) to have them pick the right repository -->
                      <name>maven.repo.local</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Alice was not going to do THAT in a hurry.  `No, I'll look
    first,' she said, `and see whether it's marked "poison" or not';
    for she had read several nice little histories about children who
    had got burnt, and eaten up by wild beasts and other unpleasant
    things, all because they WOULD not remember the simple rules
    their friends had taught them:  such as, that a red-hot poker
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/adminlte.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            1 * fileResolver.resolve('a') >> file
            0 * fileResolver._
    
            then:
            files as List == [file]
        }
    
        def "can visit structure and children after finalized from paths"() {
            given:
            def file1 = new File('one')
            def file2 = new File('two')
            _ * fileResolver.resolve(file1) >> file1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    java.util.Map, java.util.LinkedList); static void <clinit>(); } org/codehaus/plexus/util/dag/Vertex.class package org.codehaus.plexus.util.dag; public synchronized class Vertex implements Cloneable, java.io.Serializable { private String label; java.util.List children; java.util.List parents; public void Vertex(String); public String getLabel(); public void addEdgeTo(Vertex); public void removeEdgeTo(Vertex); public void addEdgeFrom(Vertex); public void removeEdgeFrom(Vertex); public java.util.List getChildren();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
Back to top