Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for downgraded (0.34 sec)

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

            when:
            operation.logProcessedBytes(512 * 1)
            operation.logProcessedBytes(512 * 2)
            then:
            1 * context.progress(1024, 10240, "bytes", "1 KiB/10 KiB downloaded")
            1 * context.progress(2048, 10240, "bytes", "2 KiB/10 KiB downloaded")
            0 * context.progress(_)
        }
    
        def "last chunk of bytes <1KiB is not logged"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/verify.go

    	UsageLine: "go mod verify",
    	Short:     "verify dependencies have expected content",
    	Long: `
    Verify checks that the dependencies of the current module,
    which are stored in a local downloaded source cache, have not been
    modified since being downloaded. If all the modules are unmodified,
    verify prints "all modules verified." Otherwise it reports which
    modules have been changed and causes 'go mod' to exit with a
    non-zero status.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencyVisitor.java

         * If true, external dependencies will be skipped.
         */
        boolean isOffline();
    
        /**
         * Should sources for external dependencies be downloaded?
         */
        boolean downloadSources();
    
        /**
         * Should javadoc for external dependencies be downloaded?
         */
        boolean downloadJavaDoc();
    
        /**
         * The dependency points to an artifact built by another project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. releasenotes/notes/32749.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 32749
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 17 16:36:41 UTC 2021
    - 169 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.1.txt

    example.com/latemigrate/v2 v2.0.1
    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.1 belongs to example.com/latemigrate/v2.
    
    -- .mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    -- .info --
    {"Version":"v2.0.1"}
    -- go.mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 449 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # split-incompatible/subpkg module). modload.QueryPattern will suggest
    # split-incompatible v2.0.0+incompatible, which we cannot use (because it would
    # be an implicit downgrade), and split-incompatible/subpkg v0.1.0, which we
    # *should* use.
    
    go mod tidy
    
    go list -m all
    stdout '^example.com/split-incompatible/subpkg v0\.1\.0$'
    ! stdout '^example.com/split-incompatible .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  7. .gitignore

    /_gopath/
    
    # Config directories created by gcloud and gsutil on Jenkins
    /.config/gcloud*/
    /.gsutil/
    
    # CoreOS stuff
    /cluster/libvirt-coreos/coreos_*.img
    
    # Downloaded Kubernetes binary release
    /kubernetes/
    
    # direnv .envrc files
    .envrc
    
    # Downloaded kubernetes binary release tar ball
    kubernetes.tar.gz
    
    # Phony test files used as part of coverage generation
    zz_generated_*_test.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_downup_pseudo_artifact.txt

    # This test illustrates a case where an upgrade–downgrade–upgrade cycle could
    # add extraneous dependencies due to another module depending on an
    # otherwise-unlisted version (such as a pseudo-version).
    #
    # This case corresponds to the "downhiddenartifact" test in the mvs package.
    
    # The initial package import graph used in the test looks like:
    #
    # a --- b
    #  \     \
    #   \     \
    #    c --- d
    #
    # The module dependency graph initially looks like:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin/build.gradle.kts

    }
    // end::use_bom_rule[]
    } else {
    // tag::use_rule[]
    dependencies {
        components.all<JacksonAlignmentRule>()
    }
    // end::use_rule[]
    // tag::enforced_platform[]
    dependencies {
        // Forcefully downgrade the virtual Jackson platform to 2.8.9
        implementation(enforcedPlatform("com.fasterxml.jackson:jackson-virtual-platform:2.8.9"))
    }
    // end::enforced_platform[]
    }
    
    // tag::bom-alignment-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/FileDownloadOperationDescriptor.java

    import org.gradle.tooling.events.OperationDescriptor;
    
    import java.net.URI;
    
    /**
     * Describes the details of a file that is downloaded.
     *
     * @since 7.3
     */
    public interface FileDownloadOperationDescriptor extends OperationDescriptor {
        /**
         * Returns the URI that the file is downloaded from.
         */
        URI getUri();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 991 bytes
    - Viewed (0)
Back to top