Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 363 for child7 (0.49 sec)

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

                addedNodes.add(node)
            }
        }
    
        String selectedChildPath
        /**
         * The child, if any, which has a common prefix with the selected path.
         */
        FileSystemNode selectedChild
    
        abstract protected NODE createInitialRootNode(ChildMap<CHILD> children);
    
        abstract protected CHILD mockChild()
    
        void setupTest(VirtualFileSystemTestSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMap.java

                RESULT handleAsAncestorOfChild(VfsRelativePath targetPath, String childPath, T child);
                RESULT handleExactMatchWithChild(VfsRelativePath targetPath, String childPath, T child);
                RESULT handleSiblingOfChild(VfsRelativePath targetPath, String childPath, T child, int commonPrefixLength);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractInvalidateChildHandler.java

            Optional<RESULT> invalidatedChild = handler.handleAsDescendantOfChild(pathInChild, child);
            return invalidatedChild
                .map(this::withReplacedChild)
                .orElseGet(this::withRemovedChild);
        }
    
        @Override
        public ChildMap<RESULT> handleAsAncestorOfChild(String childPath, T child) {
            handler.handleAsAncestorOfChild(childPath, child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/api/persistentvolume/util.go

    	}
    	if pvSpec.PhotonPersistentDisk != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11, non-functional in v1.16+", fieldPath.Child("spec", "photonPersistentDisk")))
    	}
    	if pvSpec.ScaleIO != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.16, non-functional in v1.22+", fieldPath.Child("spec", "scaleIO")))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 09:50:37 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. pkg/apis/storagemigration/validation/validation.go

    	// status is set and is an accepted value
    	if !validConditionStatuses.Has(string(condition.Status)) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("status"), condition.Status, validConditionStatuses.List()))
    	}
    
    	if condition.LastUpdateTime.IsZero() {
    		allErrs = append(allErrs, field.Required(fldPath.Child("lastTransitionTime"), "must be set"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

            def index = SnapshotUtil.indexByAbsolutePath(relocated)
    
            then:
            index.keySet() == [
                targetDir.absolutePath,
                targetDir.file("child").absolutePath,
                targetDir.file("child/child.txt").absolutePath,
                targetDir.file("parent.txt").absolutePath,
            ] as Set
    
            index.values()*.name as Set == [
                targetDir.name,
                childDir.name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/path/DefaultUrlNormalizerTest.java

            assertEquals("http://server.org/child", normalize("http://server.org/parent/../child"));
            assertEquals("http://server.org/child", normalize("http://server.org/grand/parent/../../child"));
    
            assertEquals("http://server.org//child", normalize("http://server.org/parent/..//child"));
            assertEquals("http://server.org/child", normalize("http://server.org/parent//../child"));
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

        def "produces reasonable error message when nested buildFile evaluation fails"() {
            createDirs("child")
            settingsFile << """
    include 'child'
    """
            buildFile << """
        evaluationDependsOn 'child'
        task t
    """
            final childBuildFile = file("child/build.gradle")
            childBuildFile << """
        def broken = { ->
            throw new RuntimeException('failure')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top