Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,231 for child1 (0.08 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    vfsStore.store(regularFile("${location}/some/child"))
                    vfsStore.store(regularFile("${location}/other/child"))
                    instant.partialSnapshotsStored
                    thread.blockUntil.invalidated
                    vfsStore.store(regularFile("${location}/other/child2"))
                    vfsStore.store(regularFile("${location}/some/child2"))
                    instant.snapshottingFinished
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

        public static Element getFirstChildElement(Element parentElem, String name) {
            if (parentElem == null) {
                return null;
            }
            NodeList childs = parentElem.getChildNodes();
            for (int i = 0; i < childs.getLength(); i++) {
                Node node = childs.item(i);
                if (node instanceof Element && name.equals(node.getNodeName())) {
                    return (Element) node;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/parent-inheritance/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Aug 05 21:42:06 UTC 2009
    - 279 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            expect:
            def dir = layout.projectDirectory.dir("child")
            strictlyEquals(dir, layout.projectDirectory.dir("child"))
    
            dir != layout.projectDirectory.dir("other")
            dir != layout.projectDirectory.dir("child/child2")
            dir != layout.projectDirectory.file("child")
        }
    
        def "regular files are equal when their paths are equal"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                    displayName("child").parent(parent)
                }
            })
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'Cannot start operation (child) as parent operation (parent) has already completed.'
        }
    
        def "child fails when parent completes while child is still running"() {
            when:
            async {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                    require(lookupParent != null) {
                        "Cannot find parent $parentId for child scope $childId"
                    }
                    lookupParent
                }
    
                val child = ClassLoaderScopeSpec(parent, childId.name, origin)
                scopeSpecs[childId] = child
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.graffle

    exploded-war-child-copy-spec-example.graffle ApplicationVersionco.omnigroup.OmniGraffle7.MacAppStore186.3ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTN...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/fully-populated-child.xml

    Jason van Zyl <******@****.***> 1172702970 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.7K bytes
    - Viewed (0)
  10. src/context/context_test.go

    			pc.mu.Lock()
    			if len(pc.children) != 0 {
    				t.Errorf("child's cancel didn't remove self from pc.children = %v", pc.children)
    			}
    			pc.mu.Unlock()
    		}
    
    		// child should be finished.
    		select {
    		case <-child.Done():
    		default:
    			t.Errorf("<-child.Done() blocked, but shouldn't have")
    		}
    		if e := child.Err(); e != Canceled {
    			t.Errorf("child.Err() == %v want %v", e, Canceled)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top