Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,040 for child6 (0.17 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            expect:
            assertNodesAccessing("/some", ancestor, child, grandChild)
            assertNodesAccessing("/some/location", ancestor, child, grandChild)
            assertNodesAccessing("/some/location/child/within", ancestor, child, grandChild)
            assertNodesAccessing("/some/location/child/other", ancestor)
        }
    
        def "ancestor accesses location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            for (ClassNode child : classNode.getChildren()) {
                writeLibraryAccessorClass(child, deprecated);
                writeLibrarySubClasses(child, deprecated);
            }
        }
    
        private void writeVersionSubClasses(ClassNode classNode) throws IOException {
            for (ClassNode child : classNode.getChildren()) {
                writeVersionAccessorClass(child);
                writeVersionSubClasses(child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //	NewRootObjectFunc().Index().Child("foo") == [{"foo": x}]
    //	NewRootObjectFunc().Index().Child("foo").Child("bar") == [{"foo": {"bar":x}}]
    //	NewRootObjectFunc().Index().Child("foo").Child("bar").Index() == [{"foo": {"bar":[x]}}]
    //
    // and:
    //
    //	NewRootObjectFunc(), then acc(x) == x
    //	NewRootObjectFunc().Index(), then acc([x]) == x
    //	NewRootObjectFunc().Index().Child("foo"), then acc([{"foo": x}]) == x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. 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)
Back to top