Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 121 for progressEvents (0.33 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEventsWithStatus.groovy

     */
    
    package org.gradle.integtests.tooling.fixture
    
    import org.gradle.tooling.events.ProgressEvent
    import org.gradle.tooling.events.StatusEvent
    
    // This is a separate class because StatusEvent is not available for all versions of the tooling API
    class ProgressEventsWithStatus extends ProgressEvents {
        @Override
        protected void otherEvent(ProgressEvent event, Operation operation) {
            if (event instanceof StatusEvent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r47/BuildProgressCrossVersionSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r47
    
    import org.gradle.integtests.tooling.fixture.ProgressEvents
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.test.fixtures.maven.MavenFileRepository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 03:26:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r40
    
    import org.gradle.integtests.tooling.fixture.AbstractHttpCrossVersionSpec
    import org.gradle.integtests.tooling.fixture.ProgressEvents
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.test.fixtures.Flaky
    import org.gradle.tooling.ProjectConnection
    import org.gradle.util.GradleVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r51
    
    import org.gradle.integtests.tooling.fixture.ProgressEvents
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.tooling.BuildException
    import org.gradle.tooling.ProjectConnection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

    import static org.gradle.integtests.tooling.fixture.TextUtil.escapeString
    
    @TargetGradleVersion('>=5.1')
    class ProjectConfigurationProgressEventCrossVersionSpec extends ToolingApiSpecification {
    
        ProgressEvents events = ProgressEvents.create()
    
        @Rule
        public BlockingHttpServer server = new BlockingHttpServer()
    
        def setup() {
            file("buildSrc/settings.gradle") << """
                include 'a'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r51
    
    import org.gradle.integtests.tooling.fixture.ProgressEvents
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.tooling.BuildException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

    import static org.gradle.integtests.tooling.fixture.ContinuousBuildToolingApiSpecification.getWaitingMessage
    
    abstract class TestLauncherSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        ProgressEvents events = ProgressEvents.create()
    
        @Rule
        GradleBuildCancellation cancellationTokenSource
    
        def setup() {
            // Avoid mixing JUnit dependencies with the ones from the JVM running this test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            new ProgressListener() {
                @Override
                void statusChanged(ProgressEvent event) {
                    throw new GradleException("failing progress listener")
                }
            }
        }
    
        def assertTaskOperationSuccessfulOrSkippedWithNoSource(String taskPath) {
            ProgressEvents.Operation operation = events.operation("Task $taskPath")
            if (targetVersion < GRADLE_VERSION_34) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/ProgressEvent.java

    import org.gradle.api.logging.LogLevel;
    import org.gradle.internal.operations.OperationIdentifier;
    
    public class ProgressEvent extends OutputEvent {
        private final String status;
        private final boolean failing;
        private final OperationIdentifier progressOperationId;
    
        public ProgressEvent(OperationIdentifier progressOperationId, String status, boolean failing) {
            this.progressOperationId = progressOperationId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/ProgressEvent.java

     * the execution of a build, of a task, of a test, etc. A progress event can, for example, signal that a test has started, a
     * task has finished, etc.
     *
     * @since 2.4
     */
    public interface ProgressEvent {
    
        /**
         * Returns the time this event was triggered.
         *
         * @return The event time, in milliseconds since the epoch.
         */
        long getEventTime();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top