Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 989 for child6 (0.14 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

                public Optional<FileSystemNode> handleAsDescendantOfChild(VfsRelativePath pathInChild, T child) {
                    return child.getNode(pathInChild, caseSensitivity);
                }
    
                @Override
                public Optional<FileSystemNode> handleAsAncestorOfChild(String childPath, T child) {
                    return Optional.of(child);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

                public Long handleAsDescendantOfChild(VfsRelativePath pathInChild, VersionHierarchy child) {
                    return child.getVersion(pathInChild, caseSensitivity);
                }
    
                @Override
                public Long handleAsAncestorOfChild(String childPath, VersionHierarchy child) {
                    return child.getMaxVersionInHierarchy();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            // load the child project, which inherits from p0...
            MavenProject project1 = getProject(pom1);
    
            System.out.println("\n\n");
            System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
            System.out.println("Child SCM connection is: " + project1.getScm().getConnection());
            System.out.println(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

            AtomicBoolean alreadyFoundASymlink = new AtomicBoolean(false);
            children.stream()
                .map(child -> child.getValue().relocate(targetPath + File.separatorChar + child.getPath(), interner)
                    .map(relocatedSnapshot -> new ChildMap.Entry<FileSystemLocationSnapshot>(child.getPath(), relocatedSnapshot)))
                .forEach(relocatedChild -> {
                    if (!alreadyFoundASymlink.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation.go

    					allErrs = append(allErrs, field.Invalid(pth.Child("default"), s.Default.Object, "must not have unknown fields"))
    				}
    			}
    
    			// check ObjectMeta/TypeMeta and everything else
    			if err := schemaobjectmeta.Coerce(pth.Child("default"), s.Default.Object, s, s.XEmbeddedResource, false); err != nil {
    				allErrs = append(allErrs, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    				allErrs = append(allErrs, validateNestedValueValidationCompleteness(&vFld, sAdditionalPropertiesSchema, sPath.Child("additionalProperties"), vPath.Child("properties").Key(k), opts)...)
    			}
    		} else {
    			allErrs = append(allErrs, validateNestedValueValidationCompleteness(&vFld, &sFld, sPath.Child("properties").Key(k), vPath.Child("properties").Key(k), opts)...)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta.go

    	allErrs = append(allErrs, ValidateAnnotations(meta.GetAnnotations(), fldPath.Child("annotations"))...)
    	allErrs = append(allErrs, ValidateOwnerReferences(meta.GetOwnerReferences(), fldPath.Child("ownerReferences"))...)
    	allErrs = append(allErrs, ValidateFinalizers(meta.GetFinalizers(), fldPath.Child("finalizers"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 12K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractStorePathRelationshipHandler.java

            T newChild = handler.handleAsDescendantOfChild(targetPath.pathFromChild(childPath), child);
            return withReplacedChild(newChild);
        }
    
        @Override
        public ChildMap<T> handleAsAncestorOfChild(VfsRelativePath targetPath, String childPath, T child) {
            T newChild = handler.handleAsAncestorOfChild(childPath, child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/NestedModelRuleDescriptor.java

    class NestedModelRuleDescriptor extends AbstractModelRuleDescriptor {
    
        private final ModelRuleDescriptor parent;
        private final ModelRuleDescriptor child;
    
        public NestedModelRuleDescriptor(ModelRuleDescriptor parent, ModelRuleDescriptor child) {
            this.parent = parent;
            this.child = child;
        }
    
        @Override
        public void describeTo(Appendable appendable) {
            parent.describeTo(appendable);
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIntegrationTest.groovy

            def outerBuild = new BuildTestFile(testDirectory, "root")
            def childBuild = new BuildTestFile(testDirectory.file("child"), "child")
    
            outerBuild.settingsFile << """
                includeBuild 'child'
            """
            outerBuild.file('buildSrc/src/main/java/Thing.java') << """
                class Thing {
                    Thing() { System.out.println("outer thing"); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top