Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 460 for child3 (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

                links = new TreeMap<>();
            }
            links.put(child.getPath().getName(), child);
            modelRegistry.registerNode(child, registration.getActions());
        }
    
        @Override
        public void removeLink(String name) {
            if (links!=null && links.remove(name) != null) {
                modelRegistry.remove(getPath().child(name));
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/adsc/delta.go

    	}
    }
    
    func (c *Client) relate(parent, child resourceKey) {
    	parentNode, f := c.tree[parent]
    	if !f {
    		deltaLog.Fatalf("Failed to relate resource: unknown parent: %v, %v", parent, c.tree)
    	}
    	childNode, f := c.tree[child]
    	if !f {
    		// Not yet watching child, create a node
    		c.tree[child] = resourceNode{
    			Parents:  make(keySet),
    			Children: make(keySet),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    .exampleblock>.content .qlist>ol>li:last-child> :last-child,
    .sidebarblock>.content> :last-child> :last-child,
    .sidebarblock>.content .olist>ol>li:last-child> :last-child,
    .sidebarblock>.content .ulist>ul>li:last-child> :last-child,
    .sidebarblock>.content .qlist>ol>li:last-child> :last-child {
    	margin-bottom: 0;
    }
    
    .literalblock pre,
    .listingblock pre:not(.highlight),
    .listingblock pre[class="highlight"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

            if (separator == 0) {
                return decoder.readString();
            } else {
                String parent = readName(decoder);
                String child = readName(decoder);
                return parent + (char) (separator & 0xFF) + child;
            }
        }
    
        private void writeName(String name, Encoder encoder) throws IOException {
            Integer id = namesById.inverse().get(name);
            if (id == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

        )
        def "inherited convention method is preferred over property with closure value"() {
            given:
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile """
    class ContactConvention {
        def contacts(String arg) { arg }
    }
    
    convention.plugins.contacts = new ContactConvention()
    
    subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/context/x_test.go

    	c, _ := WithCancel(parent)
    	select {
    	case <-c.Done():
    	default:
    		t.Errorf("child not done immediately upon construction")
    	}
    	if got, want := c.Err(), Canceled; got != want {
    		t.Errorf("child not canceled; got = %v, want = %v", got, want)
    	}
    	if got, want := Cause(c), cause; got != want {
    		t.Errorf("child has wrong cause; got = %v, want = %v", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

        assertEquals("com", parent.toString());
    
        // These would throw an exception if leniency were not preserved during parent() and child()
        // calls.
        InternetDomainName child = parent.child(LOTS_OF_DELTAS);
        InternetDomainName unused = child.child(LOTS_OF_DELTAS);
      }
    
      public void testValidTopPrivateDomain() {
        InternetDomainName googleDomain = InternetDomainName.from("google.com");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

            failure.assertHasDescription("A problem occurred evaluating project ':child'.")
            failure.assertHasCause("Could not create task ':child:broken'.")
            failure.assertHasCause("broken task")
        }
    
        def "reports failure in all block when task created"() {
            settingsFile << """
                include "child"
            """
            file("child/build.gradle") << """
                tasks.configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

        /**
         * How the test project is set up:
         *
         * 1. dependencyManagement lists dependencies on a &amp; b,
         *    with an exclusion on c in b.
         * 2. the child project lists a dependency on project a only
         * 3. a depends on b (which is transitive to the child project),
         *    and b depends on c.
         *
         * We should see that the resulting size of collected artifacts is two:
         * a &amp; b only.
         */
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            DefaultCopySpec child = instantiator.newInstance(SingleParentCopySpec.class, fileCollectionFactory, objectFactory, instantiator, patternSetFactory, buildRootResolver());
            addChildSpec(position, child);
            return child;
        }
    
        @Override
        public CopySpecInternal addChild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top