Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for testType (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/testing/zz_generated.deepcopy.go

    func (in *TestType) DeepCopyInto(out *TestType) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TestType.
    func (in *TestType) DeepCopy() *TestType {
    	if in == nil {
    		return nil
    	}
    	out := new(TestType)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    fun createQuickFeedbackTasks() {
        val testType = TestType.CROSSVERSION
        val defaultExecuter = "embedded"
        val prefix = testType.prefix
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {
                this.setSystemPropertiesOfTestJVM("latest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi_test.go

    func TestGetDefinitionName(t *testing.T) {
    	testType := openapitesting.TestType{}
    	// in production, the name is stripped of ".*vendor/" prefix before passed
    	// to GetDefinitionName, so here typePkgName does not have the
    	// "k8s.io/kubernetes/vendor" prefix.
    	typePkgName := "k8s.io/apiserver/pkg/endpoints/openapi/testing.TestType"
    	typeFriendlyName := "io.k8s.apiserver.pkg.endpoints.openapi.testing.TestType"
    	s := runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 29 06:38:01 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyArtifactTest.java

            String testName = "name";
            String testType = "type";
            String testExtension = "ext";
            String testClassifier = "classifier";
            String testUrl = "url";
            DependencyArtifact artifact = new DefaultDependencyArtifact(testName, testType, testExtension, testClassifier, testUrl);
            assertEquals(testName, artifact.getName());
            assertEquals(testType, artifact.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 1.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

    }
    
    fun getTestTaskName(testCoverage: TestCoverage, subprojects: List<String>): String {
        val testTaskName =
            if (testCoverage.testType == TestType.isolatedProjects) "isolatedProjectsIntegTest" else "${testCoverage.testType.name}Test"
        return when {
            subprojects.isEmpty() -> {
                testTaskName
            }
    
            else -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/groovy/test-results/build.gradle

    }
    
    dependencies {
        testReportAggregation project(':application') // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            testAggregateTestReport(AggregateTestReport) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
        dependsOn tasks.named('testAggregateTestReport', TestReport) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 434 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/groovy/code-coverage-report/build.gradle

    }
    
    dependencies {
        jacocoAggregation project(':application') // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            testCodeCoverageReport(JacocoCoverageReport) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
        dependsOn tasks.named('testCodeCoverageReport', JacocoReport) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/kotlin/test-results/build.gradle.kts

    dependencies {
        testReportAggregation(project(":application")) // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            val testAggregateTestReport by creating(AggregateTestReport::class) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.check {
        dependsOn(tasks.named<TestReport>("testAggregateTestReport")) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 446 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.jacoco.plugins.JacocoCoverageReport.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>reportTask</td>
                </tr>
                <tr>
                    <td>testType</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                ).joinToString(separator = " ")
            steps {
                gradleWrapper {
                    name = "FLAKY_TEST_QUARANTINE_${testCoverage.testType.name.uppercase()}_${testCoverage.testJvmVersion.name.uppercase()}"
                    tasks = "${if (index == 0) "clean " else ""}${testCoverage.testType.name}Test"
                    gradleParams = parameters
                    executionMode = BuildStep.ExecutionMode.ALWAYS
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top