Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for parentDir (0.14 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

                    + "Don't expect to see this assertion stack trace due to the current architecture";
    
                parentId = testMethodParentId.get(iTestResult.getMethod());
                assert parentId != null;
            }
            resultProcessor.started(testInternal, new TestStartEvent(iTestResult.getStartMillis(), parentId));
    
            if (iTestResult.getThrowable() instanceof UnrepresentableParameterException) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

                children*.displayName == ["Execute Project.beforeEvaluate listener"]
                children.first().children*.displayName == ["Apply script '${relativePath('foo/before.gradle')}' to project ':foo'"]
                parentId == configOp.id
            }
            with(operations.only(NotifyProjectAfterEvaluatedBuildOperationType, { it.details.projectPath == ':foo' })) {
                displayName == 'Notify afterEvaluate listeners of :foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestDescriptor.java

            this.className = className;
            this.methodName = methodName;
            this.parentId = parentId;
            this.taskPath = taskPath;
        }
    
        @Override
        public OperationIdentifier getId() {
            return id;
        }
    
        @Override
        public String getName() {
            return operationName;
        }
    
        @Override
        public String getDisplayName() {
            return operationDisplayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

        Map<String, ?> toSerializable() {
            Map<String, Object> map = new LinkedHashMap<>();
            map.put("displayName", displayName);
    
            map.put("id", id);
    
            if (parentId != null) {
                map.put("parentId", parentId);
            }
    
            map.put("startTime", startTime);
            map.put("endTime", endTime);
            map.put("duration", endTime - startTime);
    
            if (details != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

            }
        }
    
        override fun childScopeCreated(parentId: ClassLoaderScopeId, childId: ClassLoaderScopeId, origin: ClassLoaderScopeOrigin?) {
            synchronized(lock) {
                if (scopeSpecs.containsKey(childId)) {
                    // scope is being reused
                    return
                }
    
                val parentIsRoot = parentId.parent == null
                val parent = if (parentIsRoot) {
                    null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationDescriptor.java

            @Nullable OperationIdentifier id,
            @Nullable OperationIdentifier parentId,
            String name,
            String displayName,
            @Nullable String progressDisplayName,
            @Nullable Object details,
            BuildOperationMetadata metadata,
            int totalProgress
        ) {
            this.id = id;
            this.parentId = parentId;
            this.name = name;
            this.displayName = displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/OutputSpecification.groovy

        ProgressStartEvent start(Long id, String status) {
            start(id: id, status: status)
        }
    
        ProgressStartEvent start(Map args) {
            Long parentId = args.containsKey("parentId") ? args.parentId : null
            OperationIdentifier parent = parentId ? new OperationIdentifier(parentId) : null
            Object buildOperationId = args.containsKey("buildOperationId") ? new OperationIdentifier(args.buildOperationId) : null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultBuildPhaseDescriptor.java

        public DefaultBuildPhaseDescriptor(BuildOperationDescriptor buildOperation, OperationIdentifier parentId, String buildPhase, int workItemCount) {
            super(
                buildOperation.getId(),
                buildOperation.getName(),
                buildOperation.getDisplayName(),
                parentId
            );
            this.buildPhase = buildPhase;
            this.workItemCount = workItemCount;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 23 04:56:39 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            Set<TestIdentifier> result = new LinkedHashSet<>();
            Optional<String> parentId = testIdentifier.getParentId();
            while (parentId.isPresent()) {
                TestIdentifier parent = currentTestPlan.getTestIdentifier(parentId.get());
                result.add(parent);
                parentId = parent.getParentId();
            }
            return result;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (1)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        @Override
        List<BuildOperationRecord> parentsOf(BuildOperationRecord child) {
            def parents = []
            def parentId = child.parentId
            while (parentId != null) {
                def parent = operations.records.get(parentId)
                parents.add(0, parent)
                parentId = parent.parentId
            }
            return parents
        }
    
        @Override
        void none(Pattern displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top