Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for requireIsolatedToolingApi (0.82 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

    class GlobalLoggingManipulationIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule
        BlockingHttpServer sync = new BlockingHttpServer()
        final ToolingApi toolingApi = new ToolingApi(distribution, temporaryFolder)
    
        def setup() {
            toolingApi.requireIsolatedToolingApi()
            sync.start()
            settingsFile.touch()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        def setup() {
            toolingApi.requireIsolatedToolingApi()
            toolingApi.requireIsolatedUserHome()
        }
    
        def cleanup() {
            toolingApi.close()
        }
    
        def "can shutdown tooling API session when no operations have been executed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/InvalidateVirtualFileSystemAfterChangeCrossVersionSpec.groovy

        @Rule BlockingHttpServer server = new BlockingHttpServer()
        GradleExecuter executer
    
        List<String> changedPaths = [file("src/main/java").absolutePath]
    
        def setup() {
            toolingApi.requireIsolatedToolingApi()
    
            buildFile << """
                apply plugin: 'java'
            """
    
            executer = toolingApi.createExecuter()
        }
    
        @TargetGradleVersion(">=3.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

    import org.gradle.util.GradleVersion
    
    @LeaksFileHandles
    class ToolingApiLoggingCrossVersionSpec extends ToolingApiLoggingSpecification {
    
        def setup() {
            toolingApi.requireIsolatedToolingApi()
        }
    
        def cleanup() {
            toolingApi.close()
        }
    
        def "client receives same stdout and stderr when in verbose mode as if running from the command-line in debug mode"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            useSeparateDaemonBaseDir = false
        }
    
        TestFile getDaemonBaseDir() {
            return useSeparateDaemonBaseDir ? daemonBaseDir : gradleUserHomeDir.file("daemon")
        }
    
        void requireIsolatedToolingApi() {
            requireIsolatedDaemons()
            isolatedToolingClient = new ConnectorServices.ConnectorServiceRegistry()
        }
    
        void close() {
            assert isolatedToolingClient != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top