Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for parentLi (0.35 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. src/os/removeall_at.go

    	}
    
    	// RemoveAll recurses by deleting the path base from
    	// its parent directory
    	parentDir, base := splitPath(path)
    
    	parent, err := Open(parentDir)
    	if IsNotExist(err) {
    		// If parent does not exist, base cannot exist. Fail silently
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    	defer parent.Close()
    
    	if err := removeAllFrom(parent, base); err != nil {
    		if pathErr, ok := err.(*PathError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestStartEvent.java

        private final long startTime;
        private final Object parentId;
    
        @UsedByScanPlugin("test-distribution")
        public TestStartEvent(long startTime) {
            this(startTime, null);
        }
    
        @UsedByScanPlugin("test-distribution")
        public TestStartEvent(long startTime, Object parentId) {
            this.startTime = startTime;
            this.parentId = parentId;
        }
    
        public long getStartTime() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/CurrentGradleInstallationLocator.java

            File parentDir = codeSource.getParentFile();
    
            if (parentDir.getName().equals("lib")) {
                File pluginsDir = new File(parentDir, "plugins");
                return parentDir.isDirectory() && pluginsDir.exists() && pluginsDir.isDirectory() ? parentDir.getParentFile() : null;
            }
    
            if (parentDir.getName().equals("plugins")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultNestedTestSuiteDescriptor.java

        private final CompositeIdGenerator.CompositeId parentId;
        private final String displayName;
    
        public DefaultNestedTestSuiteDescriptor(Object id, String name, String displayName, CompositeIdGenerator.CompositeId parentId) {
            super(id, name);
            this.displayName = displayName;
            this.parentId = parentId;
        }
    
        public CompositeIdGenerator.CompositeId getParentId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

                assert details.buildPath == buildLogicBuild
                assert parentId == workGraphOps[0].id
            }
            with(calculateWorkOps[1]) {
                assert details.buildPath == ':'
                assert parentId == workGraphOps[1].id
            }
            with(calculateWorkOps[2]) {
                assert details.buildPath == ':'
                assert parentId == workGraphOps[2].id
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            taskGraphOps[0].parentId == treeTaskGraphOps[0].id
            taskGraphOps[1].displayName == "Calculate task graph"
            taskGraphOps[1].details.buildPath == ':'
            taskGraphOps[1].parentId == treeTaskGraphOps[1].id
    
            def runMainTasks = ops.only(RunRequestedWorkBuildOperationType)
            runMainTasks.parentId == root.id
    
            def runTasksOps = ops.all(Pattern.compile("Run tasks.*"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top