Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for ResultHandler (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

         * passed to the given handler's {@link ResultHandler#onComplete(Object)} method.
         *
         * <p>If the operation fails, the handler's {@link ResultHandler#onFailure(GradleConnectionException)} method is called with the appropriate exception.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestLauncherDebugCrossVersionTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.tooling.GradleConnectionException
    import org.gradle.tooling.ProjectConnection
    import org.gradle.tooling.ResultHandler
    import spock.lang.Issue
    
    @TargetGradleVersion('>=8.5')
    class TestLauncherDebugCrossVersionTest extends ToolingApiSpecification {
    
        @Issue('https://github.com/gradle/gradle/issues/26366')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:00:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildActionExecuter.java

         * ResultHandler#onComplete(Object)} method.
         *
         * <p>If the operation fails, the handler's {@link ResultHandler#onFailure(GradleConnectionException)} method is called with the appropriate exception. See
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:31:25 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.groovy

    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.tooling.GradleConnectionException
    import org.gradle.tooling.ResultHandler
    import org.gradle.tooling.UnsupportedVersionException
    
    import java.util.regex.Pattern
    
    @TargetGradleVersion('>=3.5')
    class RunTasksBeforeRunActionCrossVersion extends ToolingApiSpecification {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

        /**
         * Starts executing the tests. This method returns immediately, and the result is later passed to the given handler.
         *
         * <p>If the operation fails, the handler's {@link ResultHandler#onFailure(GradleConnectionException)}
         * method is called with the appropriate exception. See {@link #run()} for a description of the various exceptions that the operation may fail with.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/CancellationTokenSource.java

         * This method returns immediately and if the cancellation is successful the cancelled operation
         * will notify its {@link org.gradle.tooling.ResultHandler#onFailure(GradleConnectionException)}
         * with a {@link BuildCancelledException} describing how it was cancelled.
         * </p>
         */
        void cancel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top