Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for parentLi (0.21 sec)

  1. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert operation.id != null
                parent1Id = operation.id
                assert operation.parentId == null
            }
            1 * listener.start({ it.displayName == "<parent-2>" }, _) >> { BuildOperationDescriptor descriptor, BuildOperationState operation ->
                assert operation.id != null
                parent2Id = operation.id
                assert operation.parentId == null
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

            parent1.hasPackaging('pom')
            parent1.publish()
    
            def parent2 = mavenRepo.module("org", "parent2", "1.0")
            parent2.hasPackaging('pom')
            parent2.publish()
    
            buildFile << """
                repositories {
                    maven {
                        url = uri('$blockingServer.uri')
                        $authConfig
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.op(CalculateTaskGraphBuildOperationType.Details, [buildPath: ":a:buildSrc"]).parentId == treeGraphOps[0].id
    
            notifications.op(NotifyTaskGraphWhenReadyBuildOperationType.Details, [buildPath: ":"]).parentId == treeGraphOps[2].id
            notifications.op(NotifyTaskGraphWhenReadyBuildOperationType.Details, [buildPath: ":a"]).parentId == treeGraphOps[2].id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            given:
            def parentDir = temporaryFolder.createDir("parent")
            def childDir = parentDir.createDir("child")
            parentDir.createDir("sibling")
            childDir.file("file.txt").createFile()
    
            allowFileSystemAccess(true)
            def childSnapshot = read(childDir)
    
            when:
            def parentSnapshot = read(parentDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. tests/associations_test.go

    	DB.First(&parent1, parent.ID)
    	AssertObjEqual(t, parent, parent1, "ID", "FavChildID")
    }
    
    func TestSaveHasManyCircularReference(t *testing.T) {
    	parent := Parent{}
    	DB.Create(&parent)
    
    	child := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference"}
    	child1 := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference1"}
    
    	parent.Children = []*Child{&child, &child1}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
    
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == loadOps[0].id
    
            loadOps[2].displayName == "Load build (:buildB:buildSrc)"
            loadOps[2].details.buildPath == ":buildB:buildSrc"
            loadOps[2].parentId == buildSrcOps[0].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            taskGraphOps[0].parentId == treeTaskGraphOps[0].id
            taskGraphOps[1].displayName == "Calculate task graph (:buildC)"
            taskGraphOps[1].details.buildPath == ":buildC"
            taskGraphOps[1].parentId == treeTaskGraphOps[0].id
            taskGraphOps[2].displayName == "Calculate task graph"
            taskGraphOps[2].details.buildPath == ":"
            taskGraphOps[2].parentId == treeTaskGraphOps[1].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                OperationIdentifier parentId = buildOperation.getParentId();
    
                if (parentId != null) {
                    if (active.containsKey(parentId)) {
                        parents.put(id, parentId);
                    } else {
                        parentId = parents.get(parentId);
                        if (parentId != null) {
                            parents.put(id, parentId);
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

        def startConfigureRootBuild(Long id, Long parentId, int totalProgress) {
            return start(id, parentId, BuildOperationCategory.CONFIGURE_ROOT_BUILD, totalProgress)
        }
    
        def startConfigureBuild(Long id, Long parentId, int totalProgress) {
            return start(id, parentId, BuildOperationCategory.CONFIGURE_BUILD, totalProgress)
        }
    
        def startConfigureProject(Long id, Long parentId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

                assert event.progressOperationId != parentId
                assert event.parentProgressOperationId == parentId
            }
        }
    
        def "can specify the parent of an operation"() {
            given:
            def sibling = factory.newOperation("category").setDescription("sibling")
            def parent = factory.newOperation("category").setDescription("parent")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top