Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for parentMod (0.15 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            then:
            1 * processor.started({it.id == 1}, {it.parentId == null})
            1 * processor.started({ it.id == 2 && it.name == "ignored2" && it.className == AnIgnoredTestClass.name }, { it.parentId == 1 })
            1 * processor.completed(2, { it.resultType == SKIPPED })
            1 * processor.started({ it.id == 3 && it.name == "ignored" && it.className == AnIgnoredTestClass.name }, { it.parentId == 1 })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProblemDescriptor.java

        private final OperationIdentifier id;
        private final OperationIdentifier parentId;
    
        public DefaultProblemDescriptor(OperationIdentifier id, @Nullable OperationIdentifier parentId) {
            this.id = id;
            this.parentId = parentId;
        }
    
        @Override
        public Object getId() {
            return id;
        }
    
        @Override
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 09:14:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/cmd/completion_test.go

    	}
    	// test newCmdCompletion with a valid shell.
    	// use a dummy parent command as newCmdCompletion needs it.
    	parentCmd := &cobra.Command{}
    	args := []string{"completion", shells[0]}
    	parentCmd.SetArgs(args)
    	cmd := newCmdCompletion(&out, "")
    	parentCmd.AddCommand(cmd)
    	if err := parentCmd.Execute(); err != nil {
    		t.Errorf("Cannot execute newCmdCompletion: %v", err)
    	}
    }
    
    func TestRunCompletion(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 06 02:59:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top