Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 255 for parentLi (0.26 sec)

  1. 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)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestOutputDescriptor.java

        private final OperationIdentifier id;
        private final OperationIdentifier parentId;
    
        public DefaultTestOutputDescriptor(OperationIdentifier id, OperationIdentifier parentId) {
            this.id = id;
            this.parentId = parentId;
        }
    
        @Override
        public OperationIdentifier getId() {
            return id;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 30 22:30:58 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/SerializedOperationStart.java

        }
    
        SerializedOperationStart(Map<String, ?> map) {
            this.id = ((Integer) map.get("id")).longValue();
            Integer parentId = (Integer) map.get("parentId");
            this.parentId = parentId == null ? null : parentId.longValue();
            this.displayName = (String) map.get("displayName");
            this.startTime = (Long) map.get("startTime");
            this.details = map.get("details");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package compact
    
    // parents maps a compact index of a tag to the compact index of the parent of
    // this tag.
    var parents = []ID{ // 775 elements
    	// Entry 0 - 3F
    	0x0000, 0x0000, 0x0001, 0x0001, 0x0000, 0x0004, 0x0000, 0x0006,
    	0x0000, 0x0008, 0x0000, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,
    	0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K 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/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)
  9. 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)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == resolve.id
    
            def buildIdentifiedEvents = operations.progress(BuildIdentifiedProgressDetails)
            buildIdentifiedEvents.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top