Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 983 for child7 (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            expect:
            SearchUtil.binarySearch(spec.children) { child ->
                VfsRelativePath.of(spec.searchedPrefix).compareToFirstSegment(child, caseSensitivity)
            } == spec.expectedIndex
            spec.children.each { child ->
                def childIndex = spec.children.indexOf(child)
                def lengthOfCommonPrefix = VfsRelativePath.of(child).lengthOfCommonPrefix(spec.searchedPrefix, caseSensitivity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/HierarchicalElement.java

         * @since 1.0-milestone-5
         */
        @Nullable
        HierarchicalElement getParent();
    
        /**
         * Returns the child elements, or the empty set if there are no child elements.
         *
         * @return The child elements, or the empty set if there are no child elements.
         * @since 1.0-milestone-5
         */
        DomainObjectSet<? extends HierarchicalElement> getChildren();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/InheritanceAssembler.java

        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/runtime/heapdump.go

    	if name == "" {
    		name = "unknown function"
    	}
    	dumpstr(name)
    
    	// Dump fields in the outargs section
    	if child.args.n >= 0 {
    		dumpbv(&child.args, child.argoff)
    	} else {
    		// conservative - everything might be a pointer
    		for off := child.argoff; off < child.argoff+child.arglen; off += goarch.PtrSize {
    			dumpint(fieldKindPtr)
    			dumpint(uint64(off))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pkg/apis/apiserverinternal/validation/validation.go

    		if allAPIServerIDs.Has(ssv.APIServerID) {
    			allErrs = append(allErrs, field.Duplicate(fldPath.Child("storageVersions").Index(i).Child("apiServerID"), ssv.APIServerID))
    		} else {
    			allAPIServerIDs.Insert(ssv.APIServerID)
    		}
    		allErrs = append(allErrs, validateServerStorageVersion(ssv, fldPath.Child("storageVersions").Index(i))...)
    	}
    	if err := validateCommonVersion(ss, fldPath); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. pkg/apis/resource/structured/namedresources/validation/validation.go

    		allErrs = append(allErrs, validateInstanceName(instanceName, idxPath.Child("name"))...)
    		if instanceNames.Has(instanceName) {
    			allErrs = append(allErrs, field.Duplicate(idxPath.Child("name"), instanceName))
    		} else {
    			instanceNames.Insert(instanceName)
    		}
    		allErrs = append(allErrs, validateAttributes(instance.Attributes, idxPath.Child("attributes"))...)
    	}
    	return allErrs
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top