Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for downgraded (0.23 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

                inputStream.read(new byte[1024])
                "result"
            }
            1 * context.progress(1562, 4096, 'bytes', '1.5 KiB/4 KiB downloaded')
            1 * context.progress(3162, 4096, 'bytes', '3 KiB/4 KiB downloaded')
            1 * context.progress(4096, 4096, 'bytes', '4 KiB/4 KiB downloaded')
            0 * context.progress(_)
        }
    
        def "fires complete event when action complete with partially read stream"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/DownloadedUriTextResourceTest.groovy

        }
    
        def "should have no content when downloaded file has no content"() {
            when:
            downloadedFile.text = ""
            underTest = new DownloadedUriTextResource("Test description", sourceUri, "", downloadedFile, resolver)
    
            then:
            underTest.getHasEmptyContent()
        }
    
        def "should have content when downloaded file has content"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

            then:
            ConcurrentTestUtil.poll {
                outputContainsProgress(build,
                    "> :resolve > Resolve dependencies of :compile",
                    "> one-1.2.pom > 1 KiB/2 KiB downloaded", "> two-1.2.pom > 1 KiB/2 KiB downloaded"
                )
            }
    
            when:
            getM1Pom.release()
            getM2Pom.release()
            jars.waitForAllPendingCalls()
    
            then:
            ConcurrentTestUtil.poll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.0.txt

    example.com/latemigrate/v2 v2.0.0
    written by hand
    
    This repository migrated to modules in v2.0.1 after v2.0.0 was already tagged.
    All versions require rsc.io/quote so we can test downgrades.
    
    v2.0.0 is technically part of example.com/latemigrate as v2.0.0+incompatible.
    Proxies may serve it as part of the version list for example.com/latemigrate/v2.
    'go get' must be able to ignore these versions.
    
    -- .mod --
    module example.com/latemigrate
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 475 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_multirepo.txt

    env GO111MODULE=on
    
    # initial standalone module should use no downloaded modules
    go list -deps -f {{.Dir}}
    ! stdout 'pkg[\\/]mod'
    
    # v2 import should use a downloaded module
    # both without an explicit go.mod entry ...
    cp tmp/use_v2.go x.go
    go get .
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    # ... and with one ...
    cp tmp/use_v2.mod go.mod
    go list -deps -f {{.Dir}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

            succeeds("dependencies", "--configuration", "pmd")
            output.contains "pmd:pmd-java:"
    
            when:
            buildFile << """
                dependencies {
                    //downgrade version:
                    pmd "$testDependency"
                }
    
                pmd {
                    incrementalAnalysis = false
                }
            """.stripIndent()
    
            then:
            fails("check")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/DownloadProgressListener.java

         * @param contentLength the content length of the distribution, or -1 if the content length is not known.
         * @param downloaded    the total amount of currently downloaded bytes
         */
        void downloadStatusChanged(URI address, long contentLength, long downloaded);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_update_sum_readonly.txt

    ! grep '^go' $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v2.0.0+incompatible.mod
    
    # Delete downloaded .zip files.
    go clean -modcache
    
    # Check for updates.
    go list -m -u rsc.io/breaker
    stdout '^rsc.io/breaker v1.0.0 \[v2.0.0\+incompatible\]$'
    
    # We should not have downloaded zips.
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v1.0.0.zip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 27 22:01:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedDependencyResolutionIntegrationTest.groovy

            module = ivyHttpRepo.module("group", "projectA", "1.1").publish()
    
            downloaded = file('build/projectA-1.1.jar')
        }
    
        void initialResolve() {
            module.ivy.expectGet()
            module.jar.expectGet()
            resolve()
        }
    
        void resolve() {
            if (downloaded.exists()) {
                lastState = downloaded.snapshot()
            }
    
            succeeds ":retrieve"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/AliasedArtifactResolutionIntegrationTest.groovy

                }
    
                task retrieve(type: Sync) {
                    into 'libs'
                    from configurations.compile
                }
            """
        }
    
        def "does not re-download maven artifact downloaded from a different maven repository when sha1 matches"() {
            when:
            def projectBModuleRepo1 = mavenRepo1.module('org.name', 'projectB', '1.0').publish()
            projectBModuleRepo1.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top