Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 227 for test_$it (0.13 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/JvmBlockingTestClassGenerator.groovy

                    }
                }
            """.stripIndent()
        }
    
        List<String> withNonfailingTests(int num) {
            (1..num).collect {
                final resource = "test_${it}" as String
                root.file("src/test/java/pkg/OtherTest_${it}.java") << """
                    package pkg;
                    $testFrameworkImports
                    public class OtherTest_${it} {
                        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/ParallelTestExecutionIntegrationTest.groovy

            run("testClasses")
    
            and:
            executer.withArgument "--max-workers=$maxWorkers"
    
            and:
            def calls = testIndices(testCount).collect { "test_$it" } as String[]
            def handler = blockingServer.expectConcurrentAndBlock(maxConcurrency, calls)
    
            when:
            def gradle = executer.withArgument("-i").withTasks('test').start()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_vet.txt

    Zvonimir Pavlinovic <******@****.***> 1632437422 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_exit.txt

    Ian Lance Taylor <******@****.***> 1610654423 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 20:38:03 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    The plugin also integrates with <<test_kit.adoc#test_kit,TestKit>>, a library that aids in writing and executing functional tests for plugin code.
    It automatically adds the `gradleTestKit()` dependency to the `testImplementation` configuration and generates a plugin classpath manifest file consumed by a `GradleRunner` instance if found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/composite_op_round_trip.mlir

        // CHECK-ROUNDTRIP:  %0 = stablehlo.composite "stablehlo.add_n" %arg0 {composite_attributes = {test_bool = false, test_int = 2 : i64, test_string = "test"}, decomposition = @add_n.impl} : (tensor<i64>) -> tensor<i64>
        %0 = stablehlo.composite "stablehlo.add_n" %arg0 { composite_attributes = { test_int = 2 : i64, test_bool = 0 : i1, test_string = "test"}, decomposition = @add_n.impl } : (tensor<i64>) -> tensor<i64>
        return %0 : tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:40:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/testfixtures/internal/NativeServicesTestFixture.java

    import java.io.File;
    
    public class NativeServicesTestFixture {
        // Collect this early, as the process' current directory can change during embedded test execution
        private static final TestFile TEST_DIR = new TestFile(new File(".").toURI());
        static NativeServices nativeServices;
        static boolean initialized;
    
        public static synchronized void initialize() {
            if (!initialized) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_go_file.txt

    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a directory and exists
    mkdir test_dir.go
    ! go get test_dir.go
    stderr 'go: test_dir.go: arguments must be package or module paths'
    rm test_dir.go
    
    # argument has .go suffix, is a directory and exists in sub-directory
    mkdir test/test_dir.go
    ! go get test/test_dir.go
    ! stderr 'arguments must be package or module paths'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsCompatibilityIntegrationTest.groovy

    @Requires(IntegTestPreconditions.NotEmbeddedExecutor) // Gradle API and TestKit JARs are not generated when running embedded
    class GradleImplDepsCompatibilityIntegrationTest extends BaseGradleImplDepsIntegrationTest {
    
        def "TestKit dependency artifacts contain Gradle API artifact"() {
            given:
            buildFile << """
                configurations {
                    gradleApi
                    testKit
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerSamplesEndUserIntegrationTest.groovy

     */
    
    
    package org.gradle.testkit.runner.enduser
    
    import org.gradle.integtests.fixtures.Sample
    import org.gradle.integtests.fixtures.UsesSample
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.testing.internal.util.RetryUtil
    import org.gradle.testkit.runner.fixtures.NoDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top