Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for BuildCancelledException (0.35 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ActionQueriesModelThatRequiresConfigurationPhase
    import org.gradle.integtests.tooling.fixture.TestResultHandler
    import org.gradle.tooling.BuildCancelledException
    import org.gradle.tooling.GradleConnector
    import org.gradle.tooling.ProjectConnection
    import org.gradle.tooling.model.GradleProject
    
    class CancellationCrossVersionSpec extends CancellationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. 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();
    
        /**
         * Returns a token associated with this {@code CancellationTokenSource}.
         * Always returns the same instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.client
    
    import org.gradle.api.BuildCancelledException
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.initialization.BuildCancellationToken
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

         * @throws BuildException On some failure executing the Gradle build.
         * @throws BuildCancelledException When the operation was cancelled before it completed successfully.
         * @throws GradleConnectionException On some other failure using the connection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.TestResultHandler
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.tooling.BuildCancelledException
    import org.gradle.tooling.BuildException
    import org.gradle.tooling.ListenerFailedException
    import org.gradle.tooling.ProjectConnection
    import org.gradle.tooling.TestExecutionException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

         * @throws BuildException On some failure executing the Gradle build.
         * @throws BuildCancelledException When the operation was cancelled before it completed successfully.
         * @throws GradleConnectionException On some other failure using the connection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.taskgraph
    
    import org.gradle.api.Action
    import org.gradle.api.BuildCancelledException
    import org.gradle.api.CircularReferenceException
    import org.gradle.api.DefaultTask
    import org.gradle.api.Task
    import org.gradle.api.execution.TaskExecutionGraphListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.client;
    
    import org.gradle.api.BuildCancelledException;
    import org.gradle.api.internal.specs.ExplainingSpec;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.initialization.BuildCancellationToken;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

     */
    
    package org.gradle.execution.plan;
    
    import com.google.common.collect.LinkedHashMultimap;
    import com.google.common.collect.SetMultimap;
    import org.gradle.api.Action;
    import org.gradle.api.BuildCancelledException;
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.MutableBoolean;
    import org.gradle.internal.Pair;
    import org.gradle.internal.resources.ResourceLock;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
Back to top