Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 385 for Child (0.05 sec)

  1. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

      }
    
      public void testLocationEquals() {
        ClassLoader child = getClass().getClassLoader();
        ClassLoader parent = child.getParent();
        new EqualsTester()
            .addEqualityGroup(
                new ClassPath.LocationInfo(new File("foo.jar"), child),
                new ClassPath.LocationInfo(new File("foo.jar"), child))
            .addEqualityGroup(new ClassPath.LocationInfo(new File("foo.jar"), parent))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/base.css

    .appendix h1 {
        margin-bottom: 1.0em;
    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    
    .note p:first-child, .tip p:first-child {
        margin-top: 0;
    }
    
    .note > :last-child, .tip > :last-child, .examplelocation > :last-child {
        margin-bottom: 0;
    }
    
    .note, .tip, .exampleLocation {
        border-left: 1px solid #ddddd8;
        color: rgba(0,0,0,0.6);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                    }
                }
    
                // Then visit all child components' variants
                if (component instanceof ComponentWithVariants) {
                    ComponentWithVariants parent = (ComponentWithVariants) component;
                    for (SoftwareComponent child : parent.getVariants()) {
                        walkComponent(child, componentCoordinates, componentsSeen, coordinatesSeen, visitor);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
         *     <li> if mergeChildren == true and there is a corresponding dominant child (matched by element name),
         *          merge the two.</li>
         *     <li> otherwise, add the recessive child as a new child on the dominant root node.</li>
         *     </ol></li>
         *   </ol></li>
         * </ol>
         */
        @SuppressWarnings("checkstyle:MethodLength")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. maven-model-builder/src/site/apt/index.apt

      property is not inherited from a POM to its child: child's POM will use child artifact id if property is not
      set.
    
      ** since Maven 3.6.1, inheritance can avoid appending any path to parent value by setting model attribute value to
      <<<false>>> for each url:
      <<<project/@child.project.url.inherit.append.path>>>,
      <<<project/distributionManagement/site/@child.site.url.inherit.append.path>>>,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

            }
    
            void hasChild(String name, Closure<?> spec) {
                def child = actual.children.find { it.name == name }
                assert child != null: "Unable to find child named $name. Known children to ${actual.name} = ${actual.children.name}"
                checkedChildren << child
                verify(child, spec)
            }
    
            void noMoreChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    		TotalCost:                 c.TotalCost,
    		MaxCardinality:            unbounded,
    		converter:                 c.converter,
    	}
    	if child != nil {
    		result.jsonSchema = child
    		if len(child.XValidations) > 0 {
    			result.withinValidationRuleScope = true
    		}
    	}
    	if c.jsonSchema == nil {
    		// nil schemas can be passed since we call ChildSchemaContext
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

                    org.w3c.dom.Node child = children.item(i);
                    if (child.getNodeType() == org.w3c.dom.Node.TEXT_NODE && child.getNodeValue().trim().length() == 0) {
                        node.removeChild(child);
                        i--;
                    } else {
                        removeEmptyTextNodes(child);
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

                    }
                }
    
                ext.childDirName = "child"
                def t = tasks.create("show", SomeTask)
                t.outputDir = layout.buildDirectory.dir(providers.provider { childDirName })
                println "output dir before: " + t.outputDir.getOrNull()
                buildDir = "output/some-dir"
                childDirName = "other-child"
    """
    
            when:
            run("show")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "extra properties defined in parent project are accessible to child"() {
            createDirs("a", "a/child")
            settingsFile << "include 'a', 'a:child'"
            file('a/build.gradle') << """
    ext.foo = "Moo!!!"
    """
            file('a/child/build.gradle') << """
    task printExt {
        doLast {
            println "The Foo says " + foo
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top