Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for testZip (0.24 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    test:pip_venv --action_env PYTHON_LIB_PATH="/bazel_pip/lib/python3/site-packages"
    test:pip_venv --python_path="/bazel_pip/bin/python3"
    test:pip_venv --define=no_tensorflow_py_deps=true
    test:pip --config=pip_venv
    # Yes, we don't exclude the gpu tests on pip for some reason.
    test:pip_filters --test_tag_filters=-nopip,-no_pip,-no_oss,-oss_serial,-benchmark-test,-v1only,-no_aarch64,-no_oss_py38,-no_oss_py39,-no_oss_py310
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cunit/CUnitTest.groovy

    import static org.gradle.model.internal.type.ModelTypes.modelMap
    
    @UsesNativeServices
    class CUnitTest extends Specification {
        @Rule
        TestNameTestDirectoryProvider testDir = new TestNameTestDirectoryProvider(getClass())
        final def project = TestUtil.create(testDir).rootProject();
    
        def "creates a test suite for each library under test"() {
            given:
            project.pluginManager.apply(CUnitConventionPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-barebone/build.gradle.kts

        api(intellijCore())
    
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
        testImplementation(kotlinTest("junit"))
        testImplementation(projectTests(":compiler:tests-common"))
        testApi(projectTests(":compiler:test-infrastructure-utils"))
        testApi(projectTests(":compiler:test-infrastructure"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 763 bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/feature/BuildResultOutputFeatureCheck.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal.feature;
    
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.testkit.runner.UnsupportedFeatureException;
    import org.gradle.util.GradleVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsConcurrencyIntegrationTest.groovy

        private static final int CONCURRENT_BUILDS_PROJECT_COUNT = 4
        private static final int CONCURRENT_TASKS_PROJECT_COUNT = 4
    
        def "Gradle API and TestKit dependency can be resolved and used by concurrent Gradle builds"() {
            given:
            setupProjects(CONCURRENT_BUILDS_PROJECT_COUNT) { projectDirName, buildFile ->
                buildFile << testablePluginProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/build.gradle.kts

        testImplementation(projectTests(":analysis:low-level-api-fir"))
    
        testImplementation(kotlinTest("junit"))
        testCompileOnly(toolsJarApi())
        testRuntimeOnly(toolsJar())
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

        TestFile testFile
        TestFile testFileLock
        TestFile testDir
        TestFile testDirLock
    
        List<Closeable> openedLocks = []
    
        def setup() {
            testFile = tmpDir.createFile("state.bin")
            testFileLock = tmpDir.file(testFile.name + ".lock")
            testDir = tmpDir.createDir("lockable-dir")
            testDirLock = tmpDir.file("${testDir.name}/${testDir.name}.lock")
    
            metaDataProvider.processIdentifier >> '123'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionCustomTestSourceSet/kotlin/src/functionalTest/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

    package org.gradle.sample
    
    import org.gradle.testkit.runner.GradleRunner
    import spock.lang.TempDir
    import spock.lang.Specification
    
    import static org.gradle.testkit.runner.TaskOutcome.*
    
    class BuildLogicFunctionalTest extends Specification {
    
        @TempDir File testProjectDir
        File settingsFile
        File buildFile
    
        def setup() {
            settingsFile = new File(testProjectDir,'settings.gradle')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

     */
    
    package org.gradle.testkit.runner
    
    import org.gradle.internal.nativeintegration.ProcessEnvironment
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.testfixtures.internal.NativeServicesTestFixture
    import org.gradle.testkit.runner.fixtures.InjectsPluginClasspath
    import org.gradle.testkit.runner.fixtures.InspectsBuildOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            def project = rootXcodeProject.projectFile
            project.targets.size() == 2
            project.targets.every { it.productName == 'TestApp' }
            project.targets[0].name == 'TestApp'
            project.targets[0].productReference.path == exe("output/install/main/debug/lib/TestApp").absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
Back to top