Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for BuildCancelledException (0.68 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CancelExecutionStep.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.api.BuildCancelledException;
    import org.gradle.initialization.BuildCancellationToken;
    import org.gradle.internal.execution.UnitOfWork;
    
    public class CancelExecutionStep<C extends Context, R extends Result> implements Step<C, R> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/CancellationExceptionTransformer.java

                public RuntimeException transform(RuntimeException e) {
                    for (Throwable t = e; t != null; t = t.getCause()) {
                        if ("org.gradle.api.BuildCancelledException".equals(t.getClass().getName())
                            || "org.gradle.tooling.BuildCancelledException".equals(t.getClass().getName())) {
                            return new InternalBuildCancelledException(e.getCause());
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectionExceptionTransformer.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.consumer;
    
    import org.gradle.internal.event.ListenerNotificationException;
    import org.gradle.tooling.BuildCancelledException;
    import org.gradle.tooling.BuildException;
    import org.gradle.tooling.GradleConnectionException;
    import org.gradle.tooling.ListenerFailedException;
    import org.gradle.tooling.TestExecutionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner
    
    import org.gradle.api.BuildCancelledException
    import org.gradle.api.internal.project.ProjectState
    import org.gradle.initialization.BuildCancellationToken
    import org.gradle.initialization.BuildEventConsumer
    import org.gradle.internal.build.BuildProjectRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/DefaultBuildController.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import org.gradle.api.BuildCancelledException;
    import org.gradle.api.internal.project.ProjectState;
    import org.gradle.initialization.BuildCancellationToken;
    import org.gradle.initialization.BuildEventConsumer;
    import org.gradle.internal.build.BuildState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.configuration.project
    
    import org.gradle.StartParameter
    import org.gradle.api.BuildCancelledException
    import org.gradle.api.ProjectConfigurationException
    import org.gradle.api.ProjectEvaluationListener
    import org.gradle.api.internal.GradleInternal
    import org.gradle.api.internal.project.ProjectInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top