Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isDebugMode (0.42 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultDebugOptions.java

        @Override
        public int getPort() {
            return this.port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
        @Override
        public boolean isDebugMode() {
            return port > 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/test/InternalDebugOptions.java

    /**
     * Preferences for test debugging.
     *
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 5.6
     */
    public interface InternalDebugOptions {
        boolean isDebugMode();
        int getPort();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 895 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionBuildTaskSchedulerTest.groovy

            executionPlan = Mock()
            testExecutionRequest = Mock()
            testTask = Mock()
            testFilter = Mock()
            context = Stub()
    
            debugOptions = Mock()
            debugOptions.isDebugMode() >> false
            testExecutionRequest.getDebugOptions() >> debugOptions
            testExecutionRequest.getTaskSpecs() >> []
    
            setupProject()
            setupTestTask()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionBuildConfigurationAction.java

            test.getOutputs().upToDateWhen(Specs.SATISFIES_NONE);
            if (test instanceof Test) {
                InternalDebugOptions debugOptions = testExecutionRequest.getDebugOptions();
                if (debugOptions.isDebugMode()) {
                    ((Test) test).debugOptions(javaDebugOptions -> {
                        DefaultJavaDebugOptions options = (DefaultJavaDebugOptions) javaDebugOptions;
                        options.getEnabled().set(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top