Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertIsDownload (0.22 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            events.operation("Download ${modules.projectC.pom.uri}").assertIsDownload(modules.projectC.pom)
            events.operation("Download ${modules.projectC.artifact.uri}").assertIsDownload(modules.projectC.artifact)
            events.operation("Download ${modules.projectD.pom.uri}").assertIsDownload(modules.projectD.pom)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

                assert descriptor instanceof TransformOperationDescriptor
            }
    
            void assertIsDownload(RemoteArtifact artifact) {
                assertIsDownload(artifact.uri, artifact.file.length())
            }
    
            void assertIsDownload(URI uri, long size) {
                assert startEvent instanceof FileDownloadStartEvent
                assert finishEvent instanceof FileDownloadFinishEvent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top