Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,040 for child6 (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/SingleParentCopySpec.java

        public CopySpecInternal addChild() {
            DefaultCopySpec child = new SingleParentCopySpec(fileCollectionFactory, objectFactory, instantiator, patternSetFactory, buildResolverRelativeToParent(parentResolver));
            addChildSpec(child);
            return child;
        }
    
        @Override
        protected CopySpecInternal addChildAtPosition(int position) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 27 14:16:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tools/docker-builder/dockerfile/parse.go

    	}
    
    	var ret []Command
    	for _, child := range res.AST.Children {
    		cmd := Command{
    			Cmd:       child.Value,
    			Original:  child.Original,
    			StartLine: child.StartLine,
    			EndLine:   child.EndLine,
    			Flags:     child.Flags,
    		}
    
    		// Only happens for ONBUILD
    		if child.Next != nil && len(child.Next.Children) > 0 {
    			cmd.SubCmd = child.Next.Children[0].Value
    			child = child.Next.Children[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pkg/apis/policy/validation/validation.go

    		allErrs = append(allErrs, appsvalidation.IsNotMoreThan100Percent(*spec.MinAvailable, fldPath.Child("minAvailable"))...)
    	}
    
    	if spec.MaxUnavailable != nil {
    		allErrs = append(allErrs, appsvalidation.ValidatePositiveIntOrPercent(*spec.MaxUnavailable, fldPath.Child("maxUnavailable"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                        println "value = " + value
                        println "value.child = " + value.dir("child")
                        println "propValue = " + propValue.get()
                        println "propValue.child = " + propValue.get().dir("child")
                        println "propValue.child.mapped = " + propValue.dir("child").get()
                    }
                }
    
                task ok(type: SomeTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

            return child != null;
        }
    
        private void filterChildren(int position) {
            for (; position > filteredChildren.size() && filteredIndex < children.size(); filteredIndex++) {
                XmlNode child = children.get(filteredIndex);
                if (testNode(child)) {
                    filteredChildren.add(child);
                }
            }
        }
    
        private boolean testNode(XmlNode node) {
            if (test == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            expect:
            initialRoot.store(childAbsolutePath("some/child"), CASE_SENSITIVE, snapshot, changeListener) == initialRoot
            removedSnapshots.empty
            addedSnapshots.empty
        }
    
        def "invalidate removes the node"() {
            expect:
            initialRoot.invalidate(childAbsolutePath("some/child"), CASE_SENSITIVE, changeListener) == Optional.empty()
            removedSnapshots == [initialRoot]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

         * Check that we can build ok from the middle pom of a (parent,child,grandchild) hierarchy
         *
         * @throws Exception in case of issue
         */
        @Test
        void testBuildFromMiddlePom() throws Exception {
            File f1 = getTestFile("src/test/resources/projects/grandchild-check/child/pom.xml");
            File f2 = getTestFile("src/test/resources/projects/grandchild-check/child/grandchild/pom.xml");
    
            getProject(f1);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    	}
    	allErrs = append(allErrs, ValidateLabelName(sr.Key, fldPath.Child("key"))...)
    	if !opts.AllowInvalidLabelValueInSelector {
    		for valueIndex, value := range sr.Values {
    			for _, msg := range validation.IsValidLabelValue(value) {
    				allErrs = append(allErrs, field.Invalid(fldPath.Child("values").Index(valueIndex), value, msg))
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            given:
            def impl = new Impl()
            def child = new Child()
    
            when:
            container.add('i', impl)
            container.add('c', child)
    
            then:
            container.findByType(Capability) == impl
            container.getByType(Impl) == impl
            container.findByType(Parent) == child
            container.getByType(Parent) == child
        }
    
        def "can create ExtensionAware extensions"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/AbstractModelRuleDescriptor.java

        public ModelRuleDescriptor append(ModelRuleDescriptor child) {
            return new NestedModelRuleDescriptor(this, child);
        }
    
        @Override
        public ModelRuleDescriptor append(String child) {
            return append(new SimpleModelRuleDescriptor(child));
        }
    
        @Override
        @FormatMethod
        public ModelRuleDescriptor append(@FormatString String child, Object... args) {
            return append(String.format(child, args));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top